Create a character cell in ascending order
1 回表示 (過去 30 日間)
古いコメントを表示
i want to create a cell of 1000*1 , containing the strings in ascending order.
Let's say variable1, variable2,....variable999,variable1000. How can i do that with for loop?
0 件のコメント
採用された回答
madhan ravi
2019 年 1 月 9 日
編集済み: madhan ravi
2019 年 1 月 9 日
With loop:
for i =1:1000
{sprintf('variable%d',i)} % if you remove { } it's string array
end
Without loop:
compose('variable%d',(1:1000).') % cell array
compose("variable%d",(1:1000).') % string array
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Cell Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!