How to close mutiple uifigure using command
Mostrar comentarios más antiguos
I run fig = uifigure many time in Matlab,so I genetared lots of uifigure ,I want to close all uifigure with one line of command.Do you know what command I should enter in Matlab.Thank you very much
Respuesta aceptada
Más respuestas (2)
Just to add another approach,
Set HandleVisibility to on when you create the UIFigures. That way their handles will be visible to gcf() , close all, etc....
uifigure('HandleVisibility', 'on')
5 comentarios
bo peng
el 14 de Oct. de 2020
I2M
el 4 de En. de 2021
Yes very nice answer because when you move from guide to app it is not easy to uderstand that
Jan Kudlacek
el 29 de Dic. de 2021
Editada: Jan Kudlacek
el 29 de Dic. de 2021
In Matlab 2019b HandleVisibility is 'off' and is read only. Is there any workaround?
Adam Danz
el 29 de Dic. de 2021
Yang Liu
el 10 de Nov. de 2023
I don't konw why but this doesn't work for me... weird...
Bjorn Gustavsson
el 14 de Oct. de 2020
If you want to keep some figures you can close a subset of them if you keep the figure-handles in an array. If you modify your creation to something like this for all call to uifigure:
if ~exist('uifig')
uifig = uifigure;
else
uifig(end+1) = uifigure;
end
if ~exist('uifig')
uifig = uifigure;
else
uifig(end+1) = uifigure;
end
% ...etc
% then you can close some suitable set of them, or all of them
% closing all:
close([uifig]),clear uifig
% closing some:
close([uifig([1 3])]),uifig([1 3]) = [];
HTH
Categorías
Más información sobre Environment and Settings en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!