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.
|
|
According to the IEEE standard, NaN values have the odd property that comparisons involving them are always false. That is, for a float f, Note that, as some comments below have pointed out, not all compilers respect this when optimizing code. For any compiler which claims to use IEEE floating point, this trick should work. But I can't guarantee that it will work in practice. Check with your compiler, if in doubt. |
|||||||||||||||||||||
|
|
There is no In 2005 Technical Report 1 was proposed. The TR1 brings compatibility with C99 to C++. In spite of the fact it has never been officially adopted to become C++ standard, many (GCC 4.0+ or Visual C++ 9.0+ C++ implementations do provide TR1 features, all of them or only some (Visual C++ 9.0 does not provide C99 math functions). If TR1 is available, then Moreover, some implementations of C++ still make C99 A note about Viusal C++, as mentioned above, it does not provide On XCode, there is even more fun. As mentioned, GCC 4+ defines |
|||||||||
|
|
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. |
|||||||||||||||
|
|
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:
|
|||||||||||||||||
|
|
There are three "official" ways: posix Unfortunately it's rather impractical to detect which of those to use. And unfortunately, there's no reliable way to detect whether you have IEEE 754 representation with NaNs. The standard library offers an official such way ( In theory one could use simply So in the end, test for the specific NaN bitpatterns, assuming (and hopefully enforcing, at some point!) a particular representation such as IEEE 754. EDIT: as an example of "compilers such as g++ … screw that up", consider
Compiling with g++ (TDM-2 mingw32) 4.4.1:
|
|||||||||||||||||||
|
|
You can use
I don't know if this works on all platforms, as I only tested with g++ on Linux. |
|||||||
|
|
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.
|
|||||||
|
|
The following code uses the definition of NAN (all exponent bits set, at least one fractional bit set) and assumes that sizeof(int) = sizeof(float) = 4. You can look up NAN in Wikipedia for the details.
|
|||||
|
|
A possible solution that would not depend on the specific IEEE representation for NaN used would be the following:
|
|||
|
|
|
As for me the solution could be a macro to make it explicitly inline and thus fast enough. It also works for any float type. It bases on the fact that the only case when a value is not equals itself is when the value is not a number.
|
|||
|
|
|
After reading the other answers I wanted something that would pass through the floating-point comparison warning and would not break under fast math. The following code appears to work:
|
|||
|
|