How to know if a matrix has nan?

3 visualizaciones (últimos 30 días)
JFz
JFz el 5 de Dic. de 2016
Comentada: Star Strider el 5 de Dic. de 2016
Hi,
I have a huge matrix or table with doubles. But there might be nan in it. How do I know if there are any nan in it? I know I can use ismissing TF = ismissing(A); But TF is a huge matrix with many 0's in it. I am not sure if there are any 1's.
Thanks!

Respuesta aceptada

Star Strider
Star Strider el 5 de Dic. de 2016
To find the number of NaN values, I would do this:
NrNaN = sum(isnan(A(:)));
  2 comentarios
JFz
JFz el 5 de Dic. de 2016
Thank you so much for this quick help! This is what I was looking for.
Star Strider
Star Strider el 5 de Dic. de 2016
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by