Borrar filtros
Borrar filtros

Replace NaN with specific value.

80 visualizaciones (últimos 30 días)
Mehul Agrawal
Mehul Agrawal el 27 de Jun. de 2016
Comentada: Steven Lord el 27 de Jun. de 2016
I have many large column matrices (each is ~20k x 1). Some elements of the matrices are NaN. I want to replace them with 0 (or some number). Is there a quick way for that. Looping through each element is a very inefficient process and delays my program. The help is really appreciated.

Respuesta aceptada

Guillaume
Guillaume el 27 de Jun. de 2016
Editada: Guillaume el 27 de Jun. de 2016
yourmatrix(isnan(yourmatrix)) = somevalue;
But, using NaN to mark exceptional values is much better than using 0 or some other special value.
  2 comentarios
Mehul Agrawal
Mehul Agrawal el 27 de Jun. de 2016
Thanks a lot. I actually wanted to do some additions of these matrices and having NaN ignores all other calculations and I will end up having NaN. For my purpose 0 is actually a unique value too (just eligible for calculations).
Steven Lord
Steven Lord el 27 de Jun. de 2016
For a couple releases now the sum function has accepted a flag that lets you specify whether NaN values should be included in the sum (which makes the sum NaN) or excluded (unless all the values being summed are NaN.)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by