Closed oviedorodolfo closed 2 years ago
Hi, I know that NaN == NaN returns false, while isequal(NaN, NaN) returns true. What is meant by not(!) NaN == NaN in the line transcribed in the title of this issue? Many thanks for your amazing cheatsheet. Regards, Rodolfo
NaN == NaN
false
isequal(NaN, NaN)
true
Hi, I know that
NaN == NaN
returnsfalse
, whileisequal(NaN, NaN)
returnstrue
. What is meant by not(!) NaN == NaN in the line transcribed in the title of this issue? Many thanks for your amazing cheatsheet. Regards, Rodolfo