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 中有一个已经创建的子图,它的轴颜色设置等,并且一切就绪。然后我在上面绘制一个直方图。
现在我回到它,(在一个循环内),我想检查该子图、直方图或正常图上是否已经“绘制”了一些东西。如果那里有东西,do_something,否则,do_something_else。
如何检查子图或一般地块的“占用”?
您可以检查是否subplot有children:
subplot
children
isempty(get(yourSubplotHandle, 'children'))
此语句适用true于空子图。
true