Why is NaN not equal to NaN
18 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Michael
el 16 de En. de 2013
Comentada: Matt J
el 17 de Sept. de 2021
Why is this not true?
NaN==NaN
ans =
0
0 comentarios
Respuesta aceptada
Cedric
el 16 de En. de 2013
Editada: Cedric
el 16 de En. de 2013
Most times, you don't want this test to return true indeed. Imagine testing a==b and having a true result when both a and b are undefined; this would make little sense. It is the same with NaN.
While it is not the original question, note that you can test equality assuming NaN 's are equal:
But with that you usually want to test if "behaviors" are the same (and not equality per se), e.g. if two functions return the same number or both NaN do something, else do something else.
Más respuestas (1)
Matt J
el 16 de En. de 2013
Editada: Matt J
el 16 de En. de 2013
Because equality is a notion applied to numbers. How can 2 things be equal when they are not numbers?
7 comentarios
math man
el 17 de Sept. de 2021
You might wonder, though, why NaN ~= NaN returns true?
That is, if they are not numbers why are they compared in this case to give a misleading result?
Ver también
Categorías
Más información sobre Logical 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!