Generate matrix from non empty cells from another cell array
조회 수: 4 (최근 30일)
이전 댓글 표시
I have a cell matrix like this
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/329924/image.jpeg)
I need to generate matrix for the non empty cell in these format and arrange row by row ( form above to below)
A = [ 16 3
21 3
16 4
22 4
4 5
9 5
16 5
22 5
. . ] so on.
How can we do that?
댓글 수: 0
채택된 답변
madhan ravi
2020년 7월 10일
c = cell_array.';
ix = cellfun('isempty',c);
w = cellfun(@flip,c(~ix),'un',0);
Wanted = cat(1, w{:})
댓글 수: 4
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!