how to save the figure?
Show older comments
i have some functions then i have
if true
figure(k)
end
each iteration i got one figure. now i want to save the every figure in a new directory. please help me
Accepted Answer
More Answers (2)
Azzi Abdelmalek
on 10 May 2013
fichier=fullfile('directory','filename')
saveas(gcf,'fichier.jpg')
2 Comments
win
on 10 May 2013
Azzi Abdelmalek
on 10 May 2013
for k=1:10
fichier=fullfile('directory',sprintf('filename%d',k))
saveas(gcf,'fichier.jpg')
Image Analyst
on 11 May 2013
0 votes
The usual answer is to refer to the FAQ for several code examples: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F
Categories
Find more on Images 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!