How to remove empty cells from array

371 次查看(过去 30 天)
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