Borrar filtros
Borrar filtros

Save and close figure in Matlab

25 visualizaciones (últimos 30 días)
Konstantinos
Konstantinos el 28 de Mzo. de 2015
Editada: J Yadav el 3 de Abr. de 2018
My code produces 1 figure after each iteration. The problem is that, I have to run my code 1000 times, which means 1000 iterations.Therefore, I end up having 1000 open figure windows.Is there any command (or piece of code), that I can use in matlab in order to automatically save each figure produced in each iteration in a certain folder, and then close the figure window before the next iteration begins?

Respuestas (2)

Adam
Adam el 28 de Mzo. de 2015
Editada: Adam el 28 de Mzo. de 2015
doc savefig
Although quite why you would want to save 1000 figures is another matter. You could just produce the figures on demand when you are going to actually look at them.
close( hFig )
closes the figure with handle hFig.
  2 comentarios
Konstantinos
Konstantinos el 28 de Mzo. de 2015
could you please explain a little more these 2 commands ? i.e. if I have one figure with the name "figure1" and I want to save it in the folder "default", what these commands would be ?
Adam
Adam el 28 de Mzo. de 2015
Editada: Adam el 28 de Mzo. de 2015
I haven't used them myself, I just did exactly the search I would have assumed you could have done, but the help page should be pretty explicit as to how you use them. You just supply a figure handle and a filename (with full path if you don't want it to land in whatever the current directory is) and it will save the file.
close( hFig )
will close the figure. I'm not sure what more I can explain about that.
The thing you need for both of those though is to have opened your figure using:
hFig = figure;

Iniciar sesión para comentar.


J Yadav
J Yadav el 3 de Abr. de 2018
Editada: J Yadav el 3 de Abr. de 2018
Hi, this link might be of help.
https://uk.mathworks.com/matlabcentral/answers/285548-saving-figures-in-matlab?s_tid=srchtitle

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