close a specific figure file

1 view (last 30 days)
Elysi Cochin
Elysi Cochin on 14 Jun 2014
Edited: Elysi Cochin on 14 Jun 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...

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 14 Jun 2014
Edited: Azzi Abdelmalek on 14 Jun 2014
You can use try function
try
close('ANALYSIS')
end
%Or you can use
ob=findobj('type','figure','name','ANALYSIS')
close(ob)
  1 Comment
Elysi Cochin
Elysi Cochin on 14 Jun 2014
thank you so much sir.... thanks a lot....

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!