how to replace missing values from a double inside a cell array?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Farshid Daryabor
el 5 de Feb. de 2020
Comentada: BN
el 5 de Feb. de 2020
I really thanks in advance anybody can tell me how can I replace THE missing values (100000) in the below cell array with NaN.
A = {[1,2,3,100000,4,5,100000],[6,100000,7,100000]};
0 comentarios
Respuesta aceptada
JESUS DAVID ARIZA ROYETH
el 5 de Feb. de 2020
newA=cellfun(@(x) x.*(x~=100000)./(x~=100000),A,'Uni',false)
0 comentarios
Ver también
Categorías
Más información sobre NaNs en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!