How to reuse the same format
1 回表示 (過去 30 日間)
古いコメントを表示
For example, this code has nine "%7.0f" and one "%5.0f". Is there any way I can simplify this code, like "repmat('%7.0f' , 9)" , but still have the "defaults->" in the front?
fprintf('defaults-> %5.0f%7.0f%7.0f%7.0f%7.0f%7.0f%7.0f%7.0f%7.0f%7.0f\n' , header')
0 件のコメント
採用された回答
その他の回答 (1 件)
Stijn Haenen
2019 年 11 月 23 日
Maybe this will work:
a='%7.0f';
fprintf(strcat('defaults->',repmat(a,1,9),'\n'),header);
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!