Save Image Files in a loop

5 ビュー (過去 30 日間)
Maria Jaramillo
Maria Jaramillo 2018 年 6 月 28 日
回答済み: D. Plotnick 2018 年 6 月 28 日
Hello,
I have a program that generates certain images and saves them at the end and I have to actually hit save at the end, I am trying to make a loop for the same program, that will override the value of the parameter and save each file every time. I tried a simple for loop but it only saves the file once. when it goes through the first value of the parameter.

採用された回答

D. Plotnick
D. Plotnick 2018 年 6 月 28 日
Something like this should work: just iterate over the save-name for the image.
for i = 1:I
image = doStuff(data);
imagesc(image);
fName = ['fileNameBase_',num2str(i),'.png'];
saveas(gca,fName);
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by