creating a cell with serial names
5 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I want to create a list (1x15 cell) of 15 names (sometimes more than that) with names of following pattern;
AB_01, AB_02, AB_03,....AB_15.
Is there an easy way to do this , in a loop like, rather than type it each.
Thanks
0 件のコメント
採用された回答
Akira Agata
2019 年 6 月 18 日
How about the following?
suffix = repmat({'AB_'},15,1);
number = cellstr(num2str((1:15)','%02d'));
output = strcat(suffix,number)';
3 件のコメント
Stephen23
2019 年 6 月 20 日
darshani Thotagamuwage's incorrectly accepted "Answer" moved here:
It worked very well. Thanks a lot
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Multidimensional Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!