How do I print the following for loop as A1, A2, A3, A4?
9 ビュー (過去 30 日間)
古いコメントを表示
for i = 1:4
print A%d, i
end
0 件のコメント
採用された回答
Star Strider
2017 年 8 月 30 日
Use fprintf or sprintf.
Try this:
for i = 1:4
fprintf('A%d\n', i)
end
0 件のコメント
その他の回答 (2 件)
Walter Roberson
2017 年 8 月 30 日
編集済み: Walter Roberson
2017 年 8 月 30 日
cellstr( num2str( (1:4).', 'A%d') )
If you have R2017a or later, then consider
"A" + (1:4).'
If you have R2016b, then consider
string('A') + (1:4).'
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!