MATLAB: Regarding to findall function

findfunctions

Hi, all. It might be a simple question for you, but I got confused on the following sentence:
findall(0, 'type', 'figure').
what this 0 means?
Thanks a lot!

Best Answer

The 0 stands for the root of the graphic object system, the parent of the figures. You would use 0 for findobj or findall if you want to search over all figures.
You might also see reference to groot. groot is the newer name for the graphics root, and you can use either groot or 0 for R2014b or later. Eventually the ability to use 0 might go away, but I would not expect that for years yet.