close figure and stop loop
Mostra commenti meno recenti
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.
Risposte (1)
Azzi Abdelmalek
il 25 Apr 2016
break will not close a figure, use
close(1)
2 Commenti
Azzi Abdelmalek
il 25 Apr 2016
What is this?
Categorie
Scopri di più su Interactive Control and Callbacks in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!