is there an isnan() function?
p.s. I'm in mingw (if that makes a difference)
UPDATE
Thanks for the responses
I had this solved by using isnan() form <math.h>, which doesn't exist in <cmath>, which I was #includeing at first.
|
2
|
is there an isnan() function? p.s. I'm in mingw (if that makes a difference) UPDATE Thanks for the responses I had this solved by using isnan() form
|
|||
|
|
|
|
According to the IEEE standard, NaN values have the odd property that comparisons involving them are always false. That is, for a float f, |
||||||
|
|
|
There is an std::isnan if you compiler supports c99 extensions, but I'm not sure if mingw does. Here is a small function which should work if your compiler doesn't have the standard function:
|
||||||
|
|
|
You can use the
As this function is part of C99, it is not available everywhere. If your vendor does not supply the function, you can also define your own variant for compatibility.
|
||||
|
|
|
You can use
I don't know if this works on all platforms, as I only tested with g++ on Linux. |
||||||
|
|
|
There is also a header-only library present in Boost that have neat tools to deal with floating point datatypes
You get the following functions:
If you have time then have a look at whole Math toolkit from Boost, it has many useful tools and is growing quickly. Also when dealing with floating and non-floating points it might be a good idea to look at the Numeric Conversions. |
||
|
|
|
|
I believe that the "C++ way" to do this is to either use Boost or do something like:
or some less readable variant of that. IIRC, TR1 added in all of the math goodness from C99. Unfortunately I can't recall how to properly detect if the compilation environment supports TR1 :( |
||