how can I delete empty elements of a cell?
조회 수: 1 (최근 30일)
이전 댓글 표시
suppose I have a cell c
c =
[]
[1x3 double]
[]
[]
[1x2 double]
and I want to delete all the empty elements in c and get
c =
[1x3 double]
[1x2 double]
how can I do this?
댓글 수: 0
답변 (2개)
Walter Roberson
2013년 3월 12일
c( cellfun( @isempty, c ) ) = [];
댓글 수: 2
Walter Roberson
2013년 3월 12일
The form you gave will select the non-empty entries into "result" leaving everything in "c". The form I gave will delete the empty entries in "c" leaving "c" with no empty entries. Based on your showing "c =" in your question, what I gave is what you requested.
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!