Merge rows of cell array with strings per column?
5 ビュー (過去 30 日間)
古いコメントを表示
I have a cell array of 2xn with strings and I would like to merge the text of all rows on a per column base, effectively yielding a 1xn cell array. To illustrate I have something like this...
[{'A'} {'C'}; {'B'} {'D'}]
... and would like something like this:
[{'AB'} {'CD'}]
0 件のコメント
採用された回答
Stephen23
2022 年 10 月 4 日
C = {'A','C'; 'B','D'}
D = cellfun(@(c)join(c,''),num2cell(C,1))
D = cellfun(@(c)[c{:}],num2cell(C,1),'uni',0)
その他の回答 (0 件)
参考
カテゴリ
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!