How can I assign a variabe name for 10 jpg files in a for loop?
1 次查看(过去 30 天)
显示 更早的评论
With using a for loop to open ten photos for overlapping, what would be good layout for a for loop to open 10 photos to assign a variable per photo? The jpg files are name accordingly to a numerical order (A001.jpg to A010.jpg).
0 个评论
回答(1 个)
Honglei Chen
2017-6-9
编辑:Honglei Chen
2017-6-9
Something like this might work for you
for m = 1:10
filename = sprintf('A%03d.jpg',m);
imread(filename,'jpg');
end
HTH
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Argument Definitions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!