Borrar filtros
Borrar filtros

close a specific figure file

2 visualizaciones (últimos 30 días)
Elysi Cochin
Elysi Cochin el 14 de Jun. de 2014
Editada: Elysi Cochin el 14 de Jun. de 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...

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by