MATLAB: How to automatcly save a plot in matlab

plottingsave

I have a loop that do plotting. Is there a way instead of manually saving the graph the plots automatically be saved?

Best Answer

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