put together data of type char
1 回表示 (過去 30 日間)
古いコメントを表示
Hello everyone
i have this h =C3aaa;A2aaa;C4aaa (one element for each line) [3x5 char] and j=bbbbb;cccccc (one element for each line) [2X5 char]
how can i join this to have at final
total=C3aaa;A2aaa;C4aaa;bbbbb;cccccc(one element for each line) [5X5 char]
thanks for help!
0 件のコメント
採用された回答
David Young
2011 年 9 月 1 日
You can use square brackets to concatenate any matrices. For example
[A B]
puts B to the right of A, whilst
[A; B]
puts B below A.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!