how to concatenate different cells of a cell array in one cell without a loup ??
조회 수: 1 (최근 30일)
이전 댓글 표시
this is my cell B
B =
{1x2 cell} {1x3 cell}
How to transorm it into {1x5 cell}
???
댓글 수: 0
채택된 답변
Matt Fig
2012년 10월 23일
B = {{magic(2) magic(2)},{magic(2) magic(2) magic(2)}}
B2 = cat(2,B{:})
댓글 수: 0
추가 답변 (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!