Concatenate Cell array of doubles along rows
조회 수: 3 (최근 30일)
이전 댓글 표시
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!