How to automatcly save a plot in matlab
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a loop that do plotting. Is there a way instead of manually saving the graph the plots automatically be saved?
0 Commenti
Risposta accettata
Grzegorz Knor
il 3 Dic 2011
Simple example:
x = linspace(0,1,100);
for k=1:10
stem(x,x/k)
ylim([0 1])
filename = sprintf('pic%i',k);
print('-djpeg', filename, '-r100');
end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Line Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!