필터 지우기
필터 지우기

Save and close figure in Matlab

조회 수: 25 (최근 30일)
Konstantinos
Konstantinos 2015년 3월 28일
편집: J Yadav 2018년 4월 3일
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?

답변 (2개)

Adam
Adam 2015년 3월 28일
편집: Adam 2015년 3월 28일
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
Konstantinos
Konstantinos 2015년 3월 28일
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 2015년 3월 28일
편집: Adam 2015년 3월 28일
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;

댓글을 달려면 로그인하십시오.


J Yadav
J Yadav 2018년 4월 3일
편집: J Yadav 2018년 4월 3일
Hi, this link might be of help.
https://uk.mathworks.com/matlabcentral/answers/285548-saving-figures-in-matlab?s_tid=srchtitle

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by