concatenate values from matrix and cell array
古いコメントを表示
i have a matrix and a cell array
mtric =
1 2 3
4 5 6
7 8 9
cell_array =
aa bb cc
dd ee ff
gg hh ii
i wanted to combine both these as
new_out =
1 - aa 2 - bb 3 - cc
4 - dd 5 - ee 6 - ff
7 - gg 8 - hh 9 - ii
採用された回答
その他の回答 (1 件)
madhan ravi
2019 年 4 月 3 日
strcat(""+mtric,{'-'}, string(cell_array)) % string array
cellstr(strcat(""+mtric,{'-'}, string(cell_array))) % cell array
4 件のコメント
Elysi Cochin
2019 年 4 月 3 日
madhan ravi
2019 年 4 月 3 日
Which version of matlab are you using? If not use string() instead of "".
Elysi Cochin
2019 年 4 月 3 日
編集済み: Elysi Cochin
2019 年 4 月 3 日
madhan ravi
2019 年 4 月 3 日
strcat(sprintfc('%d',mtric),{'-'},cell_array)
カテゴリ
ヘルプ センター および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!