I stumbled upon this line of code in SciPy’s source, in the stats module:
return 1.0*(x==x)
Is this return something other than 1.0? In other words, is there any value of x such that x == x holds False?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to the IEEE 754 standard not-a-number (NaN) must always compare false, no matter what it is compared to.