Concatenate two cells into another
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
Yona
2014 年 12 月 30 日
It allow you to concatenate two cells.
Ce = {'Aluno', '41563'};
C3 = strcat(Ce{1}(1),Ce{2});
その他の回答 (1 件)
Ilham Hardy
2014 年 12 月 30 日
Another way is,
Ce = {'Aluno', '41563'};
C3 = [Ce{1} Ce{2}];
Mind the curly brackets {} !
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!