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...

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 6 月 14 日
編集済み: Azzi Abdelmalek 2014 年 6 月 14 日

1 投票

You can use try function
try
close('ANALYSIS')
end
%Or you can use
ob=findobj('type','figure','name','ANALYSIS')
close(ob)

1 件のコメント

Elysi Cochin
Elysi Cochin 2014 年 6 月 14 日
thank you so much sir.... thanks a lot....

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by