how to close a particular figure file if it exists

how to close a particular figure file
i used the below figure file.....
figure(6),
set(gcf, 'Name','Selected Image','numbertitle','off');
imshow(inputImage);
now the second time i execute if that figure file exists i want to delete only that particular figure file... i did as below...
if exist('Selected Image', 'file')
close 'Selected Image'
end
no error is showing nor it is getting deleted..... how to write the syntax... please do reply.....

 Accepted Answer

The created "figure" is not a "file". "Files" are found on the hard disk, not on the screen, while "figures" are the windows on the screen. Although you can store the contents of a figure to a file in the ".fig" format on the harddisk, you cannot "close" such a file.
I guess, you want to check if a figure with this name is open already. Then exist() is not sufficient, but:
existingFig = findobj(get(0), 'Children', 'flat', 'Name', 'Selected Image');
close(existingFig); % Or "delete()"
If no existing figure is found, existingFig is the empty matrix and close([]) does not perform anything.

4 Comments

sir when i used both those statements... its not working... its not identifying such a figure file to close or delete it....
why sir like that....
if exist('Selected Image', 'file')~=0
close 'Selected Image'
end
sir when i did this nothing happened... whereas when i did the reverse....
if exist('Selected Image', 'file')==0
close 'Selected Image'
end
is working....
why sir it is not identifying???...... i used the figure file as i have shown in the question...... please do reply.....
existingFig = findobj(get(0), 'Children', 'flat', 'Name', 'Selected Image');
close(existingFig); % Or "delete()"
this also not identifying such a figure file.... what should i do??
Modify it just a bit...
figure(6),
set(gcf, 'Name','Selected Image','numbertitle','off');
imshow(rand(100,100,3));
pause(1);
existingFig = findobj(0,'Name', 'Selected Image');
close(existingFig); % Or "delete()"
thank u sir... now its working when i modified as you told... thank u all for your help.....
@Elysi: if exist('Selected Image', 'file')==0 checks, if there is no file with the name "Selected Image". Because there is most likely no such file, when you did not create it explicitly, the close() command is executed. But this is a very strange test, because you can set any other ununsed file name also:
if exist('ThisFileDoesNotExistBecauseItsNameIsToSTRANGE!', 'file')==0
close('Selected Image');
end
As I've explained already, the figures do not have any relation to files, and checking, if a certain file name does not exist has no connection to closing a figure.
Instead of searching the name of the figure, using the handle would be more convenient and clear:
figHandle = figure();
...
if ishandle(figHandle) % Not closed before
close(figHandle)
end

Sign in to comment.

More Answers (1)

I tried running the same thing and it worked, however, I assume that your main problem is in the if statement, not the close line.
Run the script in debugger and see if it's actually going through the if statement. Look up how the exist() outputs work because 1 is not always the output. I would suggest changing it to something like
if exist('Selected Image', 'file')~=0
close 'Selected Image'
end

Community Treasure Hunt

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

Start Hunting!