Save figure with all subplots
조회 수: 30 (최근 30일)
이전 댓글 표시
I generated a lot of figures with subplots. I want to save them and don't want to display them.
I realized only the last subplot is saved. Is there anyway I can save all subplots in a figure.
The following is an example code.
t=linspace(1,10,20);
y=2*t;
for i=1:3
f=figure('visible','off');
subplot(1,3,i)
p=plot(t,y);
saveas(f,'test','jpg')
end
댓글 수: 1
답변 (1개)
Walter Roberson
2019년 10월 9일
Construct new file names each iteration.
saveas(f, sprintf('test%d.jpg', i))
참고 항목
카테고리
Help Center 및 File Exchange에서 Printing and Saving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!