Replace missing value of cell array with NaN

please find attached file, I tried to replace missing values (-1.27605887595352e+39) with NaN, unfortunately I encountering with the following error. Thanks in advance any help.
INDEX = cellfun(@(x) (x<-1),presglb,'UniformOutput',false) ;
>> presglb_new = presglb(INDEX);
Function 'subsindex' is not defined for values of class 'cell'.

 Respuesta aceptada

Bhaskar R
Bhaskar R el 11 de Feb. de 2020
Editada: Bhaskar R el 11 de Feb. de 2020
ind = cellfun(@(x) (x<-1),presglb,'UniformOutput',false);
for ii =1 :length(presglb)
presglb{ii}(ind{ii}) = nan;
end

7 comentarios

Farshid Daryabor
Farshid Daryabor el 11 de Feb. de 2020
"ind" is corresponding to what?
Farshid Daryabor
Farshid Daryabor el 11 de Feb. de 2020
is corresponding to the element below?
ind = cellfun(@(x) (x<-1),presglb,'UniformOutput',false) ;
Bhaskar R
Bhaskar R el 11 de Feb. de 2020
Forgot to mention, now post is edited.
Farshid Daryabor
Farshid Daryabor el 11 de Feb. de 2020
Yes, I got it thanks
Bhaskar R
Bhaskar R el 11 de Feb. de 2020
You are welcom :-)
Farshid Daryabor
Farshid Daryabor el 11 de Feb. de 2020
Dear Bhaskar, after getting new presglb, you know how can I remove NaN?
Thanks
Farshid Daryabor
Farshid Daryabor el 11 de Feb. de 2020
I know the following way, but the double size in the cell has changed, I want to keep the size as before.
>> result = cellfun(@(x) x(~isnan(x)), presglb, 'Uniform', 0);

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 11 de Feb. de 2020

Comentada:

el 11 de Feb. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by