I am reading another programmer’s Matlab GUI. It is really complicated. A lot of axes and bars and tables. When I look deeper into the .m file, I just cannot find the corresponding parts in the .fig layout. Is there any good way to do that?
Thanks.
I am reading another programmer’s Matlab GUI. It is really complicated. A lot of
Share
There is the findall function:
For instance, you might call findall(gcf, ‘Type’, ‘Text’) to find all text objects etc.
Also, there is the findobj: