Iterate through a loop using the alphabet.
19 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I am looking to loop through a few files names that differ only by one letter, i.e they go 001a, 001b, 001c etc.
What is the simplest way to put set the loop up, so that it changes the value of the letter each time.
For example ideally i want:
For x=a:z
filename = ['001' ,x '.txt']
Or something similar.
Can this be done?
Kind regards
Joe Harris
Apologies if the question isn't worded very well!
0 件のコメント
採用された回答
the cyclist
2011 年 10 月 5 日
Here's one way:
s = char(97:122) % Or just use: s = 'abcdefghijklmnopqrstuvwxyz';
for ns = 1:length(s)
filename = ['001',s(ns),'.txt']
end
3 件のコメント
Alvaro Gaona
2018 年 8 月 12 日
Now it's easier.
for letter='a':'z'
filename = ['001', letter,'.txt']
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!