How do I close a specific figure

102 ビュー (過去 30 日間)
Nimrodb
Nimrodb 2013 年 2 月 25 日
コメント済み: Laercio Barbosa 2019 年 3 月 21 日
I have a GUI. This GUI runs a simulation the at the end of it I open a figure to display results.
When I re-run the simulation - the old figure is kept open.
How do I close the old figure without closing the GUI?
('close all' close all the windows including the GUI).
  1 件のコメント
babita verma
babita verma 2017 年 11 月 28 日
close(gcf)

サインインしてコメントする。

回答 (4 件)

João Miguel Marinheiro
João Miguel Marinheiro 2019 年 2 月 21 日
編集済み: João Miguel Marinheiro 2019 年 2 月 21 日
close(figure(<number of figure>))

Morteza
Morteza 2013 年 2 月 25 日
In the section of simulation use these line:
handles.H = figure(2)
plot(rand(10,1));
waitforbuttonpress;
close(handles.H)
when you press any button ploter figure automatically will be closed

Sean de Wolski
Sean de Wolski 2013 年 2 月 25 日
hFig = figure;
surf(peaks);
To close that figure:
close(hFig)
  3 件のコメント
Sean de Wolski
Sean de Wolski 2013 年 2 月 25 日
Then that handle hasn't been stored. You should store that handle in whatever is calling the simulation so that it can close it.
Nimrodb
Nimrodb 2013 年 2 月 26 日
as a global in the beginning of the main function? The simulation is called from a GUI built by GUIDE.
The flow is:
GUI made by GUIDE --> Simulation ---> Results function (that opens a Figure)
Where and how do I save the figure handle?

サインインしてコメントする。


Laercio Barbosa
Laercio Barbosa 2017 年 6 月 21 日
編集済み: Laercio Barbosa 2019 年 3 月 21 日
I am passing here to let my contribution as I had exactly the same problem. If you know the name or tag of the GUI do:
% Close all figures still openned except the GUI which property 'name' is equal 'nameOfQUI'
figHandles = findobj('type', 'figure', '-not', 'name', 'nameOfGUI');
close(figHandles);
or
% Close all figures still openned except the GUI which property 'tag' is equal 'tagOfQUI'
figHandles = findobj('type', 'figure', '-not', 'tag', 'tagOfGUI');
close(figHandles);
  2 件のコメント
beginner94
beginner94 2018 年 9 月 16 日
@Laercio Barbosa
You only need to fill in ''tag'' and ''tagOfGUI'', right? So if the tag of my GUI is ''figure1'', then:
figHandles = findobj('type', 'figure', '-not', 'figure1', 'figure1');
close(figHandles);
should do it? It doesn't work for me and I am searching for my error...
Laercio Barbosa
Laercio Barbosa 2019 年 3 月 21 日
@beginner94, sorry for the late response.
No. You don't need fill all the fields you mentioned. Only the last one. Basically what we are doing is:
Find objects of type figure, but not that one where figure property is equal figure1.
or still
Find objects of type figure, but not that one where tag property is equal "tagname".
In your case
figHandles = findobj('type', 'figure', '-not', 'figure', 'figure1');
close(figHandles);

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by