How to remove empty cells from array

272 visualizaciones (últimos 30 días)
Daneisha Blair
Daneisha Blair el 23 de Ag. de 2021
Comentada: Stephen23 el 23 de Ag. de 2021
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 comentarios
Daneisha Blair
Daneisha Blair el 23 de Ag. de 2021
I figure it out :), data(cellfun(@isempty,data))=[]; works.
Thanks!
Stephen23
Stephen23 el 23 de Ag. de 2021
@Daneisha Blair: yes,
data(cellfun(@isempty,data))=[];
is probably the best way to do this.

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 23 de Ag. de 2021
If C is your cell array, you can remove the empty cells using:
C = C(~cellfun('isempty',C)) ;

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by