Create an string array with strings having both char and numbers
2 ビュー (過去 30 日間)
古いコメントを表示
Could you help me in creating a string array with strings containing characters and numbers in a sorted manner
Eg:
I want to create a string array with strings {"Analysis_1", "Analysis_2", "Analysis_3", "Analysis_4", ......, "Analysis_n"}
The values of 'n' should be defined in way that it can be varied by the user.
0 件のコメント
採用された回答
その他の回答 (1 件)
Steven Lord
2021 年 6 月 8 日
n = 5;
S = "Analysis_" + (1:n)
You can also use implicit expansion to make an array if you so desired.
fruits = ["apple"; "banana"; "cherry"]
quantity = 1:4;
market = fruits + "_" + quantity
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!