Save figure with all subplots

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 commentaire

Trang Doan
Trang Doan le 19 Avr 2021
Déplacé(e) : Adam Danz le 7 Oct 2024
how to save 1 figure of the subplots

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 9 Oct 2019

2 votes

Construct new file names each iteration.
saveas(f, sprintf('test%d.jpg', i))

4 commentaires

Sharon
Sharon le 9 Oct 2019
Modifié(e) : Sharon le 9 Oct 2019
Thank you Walter.
I made the mistake using
figure('visible','off')
So it generates new figure every loop.
After correcting it to
t=linspace(1,10,20);
y=2*t;
for i=1:3
f=figure(1);
set(f,'Visible', 'off')
subplot(1,3,i)
p=plot(t,y);
saveas(f,'test','jpg')
end
It works.
Walter Roberson
Walter Roberson le 9 Oct 2019
That would overwrite test.jpg each iteration.
Sharon
Sharon le 9 Oct 2019
You are right. I should put saveas outside the loop.
I'd also like to point readers in the direction of exportgraphics instead of saveas.
exportgraphics(fig, filename)

Connectez-vous pour commenter.

Catégories

En savoir plus sur Printing and Saving dans Centre d'aide et File Exchange

Question posée :

le 9 Oct 2019

Commenté :

le 7 Oct 2024

Community Treasure Hunt

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

Start Hunting!

Translated by