Convert cell array to an array, when the size of the cells is different
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi all,
I have a cell array like this A={ [0 0 0 0] ; [1 1] ;[2] }
Is it possible to convert it in an array? I tried with cell2mat but I get an error because the sizes are different
thanks
Nikolas
댓글 수: 0
채택된 답변
추가 답변 (1개)
madhan ravi
2018년 12월 4일
[A{:}] % which is eqivalent to horzcat(A{:})
댓글 수: 3
madhan ravi
2018년 12월 4일
편집: madhan ravi
2018년 12월 4일
just give an example of your desired output in the example you gave! plus how can you put them in an array when the number of columns are different??
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!