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.
|
|
|||||||||||
|
|
The usual way to test for a NaN is to see if it's equal to itself:
|
|||||||||||||
|
|
numpy.isnan(float) tells you if it's NaN or not in Python 2.5 |
|||||
|
|
|
Another method if you're stuck on <2.6, you don't have numpy, and you don't have IEEE 754 support:
|
|||
|
|
|
or compare the number to itself. NaN is always != NaN, otherwise (e.g. if it is a number) the comparison should succeed. |
|||||
|
|
With python < 2.6 I ended up with
This works for me with python 2.5.1 on a Solaris 5.9 box and with python 2.6.5 on Ubuntu 10 |
|||||||
|
|
I actually just ran into this, but for me it was checking for nan, -inf, or inf. I just used
This is true for numbers, false for nan and both inf, and will raise an exception for things like strings or other types (which is probably a good thing). Also this does not require importing any libraries like math or numpy (numpy is so damn big it doubles the size of any compiled application). |
|||
|
|
|
Well I entered this post, because i've had some issues with the function:
There are problem when you run this code:
It raises exception. My solution for that is to make another check:
|
|||
|
|
|
Use Numpy library. Ex: numpy.isnan(value) |
|||||||
|
|
Here is how:
|
||||