How to remove empty cells from array

조회 수: 305 (최근 30일)
Daneisha Blair
Daneisha Blair 2021년 8월 23일
댓글: Stephen23 2021년 8월 23일
Hi,
I'm very new to matlab :)
How can I remove the empty cells from the array in the attached image?
I have tried data(~cellfun('isempty',data)), but this didn't work.
Thank you for the help.
  댓글 수: 4
Daneisha Blair
Daneisha Blair 2021년 8월 23일
I figure it out :), data(cellfun(@isempty,data))=[]; works.
Thanks!
Stephen23
Stephen23 2021년 8월 23일
@Daneisha Blair: yes,
data(cellfun(@isempty,data))=[];
is probably the best way to do this.

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2021년 8월 23일
If C is your cell array, you can remove the empty cells using:
C = C(~cellfun('isempty',C)) ;

카테고리

Help CenterFile Exchange에서 Denoising and Compression에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by