Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读另一个程序员的 Matlab GUI。这真的很复杂。很多轴、条和桌子。当我更深入地查看 .m 文件时,我只是无法在 .fig 布局中找到相应的部分。有什么好办法吗?谢谢。
有findall功能:
object_handles = findall(handle_list) 返回handle_list 中标识的对象下层次结构中所有对象的句柄,包括隐藏句柄。
例如,您可以调用 findall(gcf, 'Type', 'Text') 来查找所有文本对象等。
此外,还有findobj:
定位具有特定属性的图形对象