Need help with sprintf formatting
古いコメントを表示
So I have an sprintf statement in a for loop that looks like this:
run='4-QRSVH';
field='by';
files=21;
for f=1:files
fn=sprintf('./data/%s/%s%d.dat', run, field, (f-1)*10000 );
end
In the first loop the value of fn is './data/4-QRSVH/by0.dat' as it should be but then when the loop goes through the next iteration the last part is entirely messed up. It becomes an enormous string and I'm not sure how to fix it. Any suggestions?
4 件のコメント
Walter Roberson
2017 年 7 月 18 日
Could you give an example? The code appears to work for me.
Jesse Randall
2017 年 7 月 18 日
Jesse Randall
2017 年 7 月 18 日
Philip Borghesani
2017 年 7 月 18 日
Doing that is usually a good clue that your script (or function) is getting too large and needs to be broken up.
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で MATLAB についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!