Hello,
I am running a for loop:
and in each loop, I am creating and saving a plot:
h=figure
plot(...
saveas(h,'FIG','png');
end
This is problematic because 'FIG.png' is overwritten each time the for loop runs. How do I make it so that it saves 'FIG1.png','FIG2.png','FIG3.png', etc? In other words, how do I save FIG(i).png?
Thank you for your time.
0 Comments
Sign in to comment.