neat stacking of array and cell array
이전 댓글 표시
Hi all
i have this 3x2 cell array:
6x1 cell 1x1 cell %a
1x1 cell 1x1 cell %b
[] 1x1 cell %c
i want to stack up the cell array in this way:
6x1 cell
1x1 cell %a
1x1 cell
1x1 cell %b
[]
1x1 cell %c
then i want to remove the empty cell and expand the 5x1 cell in a matrix.
i have tried with vertcat but it doesn't keep the order...
Thank you for the help
Regard!!
채택된 답변
추가 답변 (1개)
madhan ravi
2020년 9월 3일
C = reshape(cell_array.', [], 1);
C(cellfun('isempty', C)) = []
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!