Azzera filtri
Azzera filtri

close a specific figure file

2 visualizzazioni (ultimi 30 giorni)
Elysi Cochin
Elysi Cochin il 14 Giu 2014
Modificato: Elysi Cochin il 14 Giu 2014
i display a table in a figure file...
now i want to close this file,
i did
close 'ANALYSIS'
and it worked, but if it does not exists it shows error that file does not exists...
how to check if a figure of ANALYSIS name exists
if exist('ANALYSIS', 'file')
close 'ANALYSIS'
end
this is not working for me... please do reply...

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 14 Giu 2014
Modificato: Azzi Abdelmalek il 14 Giu 2014
You can use try function
try
close('ANALYSIS')
end
%Or you can use
ob=findobj('type','figure','name','ANALYSIS')
close(ob)

Più risposte (0)

Categorie

Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by