Saving a matlab figure file without displaying it
Ältere Kommentare anzeigen
Usually I generate a matlab plot using plot command and then save it for offline viewing. When I have to do the same for, say, 1000 plots, displaying each of them before saving becomes time consuming. Is there a way to save a matlab plot as jpeg without displaying it?
Akzeptierte Antwort
Weitere Antworten (2)
Blanca Larraga
am 4 Jun. 2018
0 Stimmen
Hi, I do this but the .jpeg are empty. Is there anything else I should consider?
Y. J.
am 26 Jul. 2018
0 Stimmen
Hey I have a similiar problem. I'm plotting in a invisible figure in the first time that works good but if I want to hold on the plot and plot another one in it, it is overwriting the first plot? Any Idea for that?
1 Kommentar
Benjamin Abruzzo
am 28 Mai 2020
Thy this
f = figure('visible', 'off');
X = rand(10,1); Y = rand(10,1); Z = rand(10,1);
hold on
plot(X,Y)
plot(X,Z)
plot(Y,Z)
hold off
print -djpeg test.jpg
close(f)
Kategorien
Mehr zu Printing and Saving finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!