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.
feedback
|
|
According to the IEEE standard, NaN values have the odd property that comparisons involving them are always false. That is, for a float f, | |||||||||||||||||||
feedback
|
|
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. | |||||||||||
feedback
|
|
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:
| |||||||||||||||||
feedback
|
|
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 | |||||
feedback
|
|
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:
| |||||||||||||||||||
feedback
|
|
You can use
I don't know if this works on all platforms, as I only tested with g++ on Linux. | |||||||||||||||
feedback
|
|
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.
| |||||||
feedback
|
|
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.
| |||
|
feedback
|
|
| |||||||||
feedback
|
|
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 :( | |||||||||||
feedback
|