How to automatcly save a plot in matlab
2 views (last 30 days)
Show older comments
I have a loop that do plotting. Is there a way instead of manually saving the graph the plots automatically be saved?
0 Comments
Accepted Answer
Grzegorz Knor
on 3 Dec 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 Comments
More Answers (0)
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!