Concatenate Cell array of doubles along rows
3 ビュー (過去 30 日間)
古いコメントを表示
Abdelrahman Abdeltawab
2016 年 11 月 5 日
編集済み: Walter Roberson
2016 年 11 月 5 日
i have a cell array that looks like the following (4X2) in attached image
I want to concatenate adjacent values in rows
0 件のコメント
採用された回答
Walter Roberson
2016 年 11 月 5 日
arrayfun(@(COLIDX) vertcat(YourCell{:,COLIDX}), 1:size(YourCell,2), 'Uniform', 0)
4 件のコメント
Walter Roberson
2016 年 11 月 5 日
arrayfun(@(ROWIDX) vertcat(YourCell{ROWIDX,:}), (1:size(YourCell,1)).', 'Uniform', 0)
その他の回答 (1 件)
KSSV
2016 年 11 月 5 日
Let C be your cell array..
iwant{1} = [C{1,1} C{2,1}] ;
iwant{2} = [C{1,2} C{2,2}] ;
2 件のコメント
参考
カテゴリ
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!