storing matrix elements in a single variable as string
2 ビュー (過去 30 日間)
古いコメントを表示
Karanvir singh Sohal
2021 年 3 月 29 日
コメント済み: Karanvir singh Sohal
2021 年 3 月 29 日
Hello!
I want to join the multiple int from the matrix and save them as a string. Let us say I have a matrix A.
A = [3 25 100 5 20 100];
I want to store these values in B as following
B=("3#25@100","5#20@100")
Thanks in advance.
0 件のコメント
採用された回答
Fangjun Jiang
2021 年 3 月 29 日
Use for-loop if want to split
A = [3 25 100 5 20 100];
>> B=sprintf("%d#%d@%d\n",A(:))
B =
"3#25@100
5#20@100
"
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!