replace nan with blank

abc={1,[],'weak'} now i want to remove [] from above variable abc and give me abc={1,'weak'} only, can any one suggest me any method for it.

 Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 14 de Mzo. de 2013
Editada: Andrei Bobrov el 14 de Mzo. de 2013

0 votos

out = abc(~cellfun(@isempty,abc));
or
abc(cellfun(@isempty,abc)) = [];

Más respuestas (0)

Categorías

Preguntada:

el 14 de Mzo. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by