Delete Figures except main GUI figure
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jason
el 18 de En. de 2016
Comentada: Jason
el 18 de En. de 2016
If I have determined that the following figures open, using
F=findall(0,'type','figure')
figure 1 is my main GUI window.
F =
5x1 Figure array:
Figure (figure1)
Figure (5)
Figure (2)
Figure (3)
Figure (1)
The number of figures open changes and sometimes its just my main GUI (figure1).
How can I delete any figures open EXCEPT figure1
Respuesta aceptada
Walter Roberson
el 18 de En. de 2016
fig1h = findall(0,'type,'figure','Tag','figure1');
figh = findall(0,'type','figure');
other_figures = setdiff(figh, fig1h);
delete(other_figures);
Más respuestas (0)
Ver también
Categorías
Más información sobre Graphics Performance en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!