필터 지우기
필터 지우기

Why is NaN not equal to NaN

조회 수: 14 (최근 30일)
Michael
Michael 2013년 1월 16일
댓글: Matt J 2021년 9월 17일
Why is this not true?
NaN==NaN
ans =
0

채택된 답변

Cedric
Cedric 2013년 1월 16일
편집: Cedric 2013년 1월 16일
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.
  댓글 수: 2
Matt J
Matt J 2013년 1월 16일
편집: Matt J 2013년 1월 16일
Although more recently, isequalwithequalnans has been deprecated in favor of isequaln
Cedric
Cedric 2013년 1월 16일
Ah thank you, I still have 2011b and I wasn't aware (despite linking the doc for 2012b ;-/).

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Matt J
Matt J 2013년 1월 16일
편집: Matt J 2013년 1월 16일
Because equality is a notion applied to numbers. How can 2 things be equal when they are not numbers?
  댓글 수: 7
math man
math man 2021년 9월 17일
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?
Matt J
Matt J 2021년 9월 17일
@math man So you think the result of NaN ~= NaN should be NaN? Maybe.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by