float('nan') results in a thingy simply called nan. But how do I check for it? Should be very easy, but i cannot find it.
|
2
|
|
|
|
|
|
|
||||||||
|
|
|
The usual way to test for a NaN is to see if it's equal to itself:
|
||||
|
|
|
or compare the number to itself. NaN is always != NaN, otherwise (e.g. if it is a number) the comparison should succeed. |
||
|
|
|
|
numpy.isnan(float) tells you if it's NaN or not. |
||
|
|
