Save figure with all subplots
32 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
Trang Doan
am 19 Apr. 2021
Verschoben: Adam Danz
am 7 Okt. 2024
how to save 1 figure of the subplots
Antworten (1)
Walter Roberson
am 9 Okt. 2019
Construct new file names each iteration.
saveas(f, sprintf('test%d.jpg', i))
Siehe auch
Kategorien
Mehr zu Printing and Saving finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!