close figure and stop loop
显示 更早的评论
hi, first of all i am sorry for my english.
my program:
f=figure(1);
while 1;
bla bla ...
end
i try to close figure 1 but re-open itself.
and i try this in while:
h = findobj('type','figure');
n = length(h);
if(n==0)
break;
end
but not work it!
please help me.
回答(1 个)
Azzi Abdelmalek
2016-4-25
break will not close a figure, use
close(1)
2 个评论
Azzi Abdelmalek
2016-4-25
What is this?
类别
在 帮助中心 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!