matrix to cell conversion
이전 댓글 표시
how to convert 768*8 matrix into 768 number of 8*1 cells using matlab
댓글 수: 1
Fangjun Jiang
2020년 8월 13일
couldn't figure it out using the examples in "doc mat2cell"?
답변 (2개)
David Hill
2020년 8월 13일
newCell=mat2cell(yourMatrix,ones(size(yourMatrix,1),1));
madhan ravi
2020년 8월 13일
num2cell(matrix, 1).'
카테고리
도움말 센터 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!