how to save the figure?
古いコメントを表示
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
採用された回答
その他の回答 (2 件)
Azzi Abdelmalek
2013 年 5 月 10 日
fichier=fullfile('directory','filename')
saveas(gcf,'fichier.jpg')
2 件のコメント
win
2013 年 5 月 10 日
Azzi Abdelmalek
2013 年 5 月 10 日
for k=1:10
fichier=fullfile('directory',sprintf('filename%d',k))
saveas(gcf,'fichier.jpg')
Image Analyst
2013 年 5 月 11 日
0 投票
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
カテゴリ
ヘルプ センター および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!