vote up 7 vote down star
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 <math.h>, which doesn't exist in <cmath>, which I was #includeing at first.

flag

75% accept rate

6 Answers

vote up 12 vote down check

According to the IEEE standard, NaN values have the odd property that comparisons involving them are always false. That is, for a float f, f != f will be true only if f is NaN.

link|flag
Isn't it possible that the compiler will optimize this out though? (I don't know because I haven't used C++ for a long time) – DrJokepu Feb 20 at 18:44
The compiler had better not remove this if running in an IEEE mode. Check the documentation for your compiler, of course... – dmckee Feb 20 at 19:21
Not unless the compiler is buggy. ;) It's a well-known feature and it's part of the language (in that the language mandates that the IEEE spec is followed for floats) – jalf Feb 21 at 1:41
vote up 14 vote down

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:

bool custom_isnan(double var)
{
    volatile double d = var;
    return d != d;
}
link|flag
why not just var != var? – Brian R. Bondy Feb 20 at 18:42
1  
When doing that their is a chance the compiler will optimize the comparison out, always returning true. – CTT Feb 20 at 18:49
vote up 5 vote down

You can use the isnan() function, but you need to include the C math library.

#include <cmath>

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.

#ifndef isnan
inline bool isnan(double x) {
    return x != x;
}
#endif
link|flag
I was using <cmath> and there's no isnan in it! incidentally I found out that there is an isnan in <math.h> – hasen j Feb 20 at 18:41
As I said, this is part of C99. As C99 is not part of any current C++ standard, I provided the alternative. But as it is likely that isnan() will be included in an upcoming C++ standard, I put a #ifndef directive around it. – Raim Feb 21 at 1:31
vote up 8 vote down

You can use numeric_limits<float>::quiet_NaN( ) defined in the limits standard library to test with. There's a separate constant defined for double.

#include <iostream>
#include <math.h>
#include <limits>

using namespace std;

int main( )
{
   cout << "The quiet NaN for type float is:  "
        << numeric_limits<float>::quiet_NaN( )
        << endl;

   float f_nan = numeric_limits<float>::quiet_NaN();

   if( isnan(f_nan) )
   {
       cout << "Float was Not a Number: " << f_nan << endl;
   }

   return 0;
}

I don't know if this works on all platforms, as I only tested with g++ on Linux.

link|flag
1  
Watch out, though--there appears to be a bug in numeric_limits in GCC version 3.2.3, since it returns 0.0 for quiet_NaN. Later versions of GCC are okay in my experience. – Nathan Kitchen Apr 30 at 21:12
@Nathan: Good to know. I'm using version 4.3.2, so I'm well out of the woods. – Bill the Lizard Apr 30 at 21:48
vote up 3 vote down

There is also a header-only library present in Boost that have neat tools to deal with floating point datatypes

#include <boost\math\special_functions\fpclassify.hpp>

You get the following functions:

template <class T> bool isfinite(T z);
template <class T> bool isinf(T t);
template <class T> bool isnan(T t);
template <class T> bool isnormal(T t);

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.

link|flag
vote up -3 vote down

I believe that the "C++ way" to do this is to either use Boost or do something like:

#if I_HAVE_TR1
#include <cmath> // defines std::tr1::isnan<T>
#else
#include <limits>
namespace std { namespace tr1 {
template <class T>
inline bool isnan(T val) {
    return ((std::numeric_limits<T>::has_quiet_NaN &&
             (std::numeric_limits<T>::quiet_NaN() == val)) ||
            (std::numeric_limits<T>::has_signaling_NaN &&
             (std::numeric_limits<T>::signaling_NaN() == val));
}
}} // end namespace std::tr1
#endif

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 :(

link|flag
what's the need for all this mess when it's so simple?? check the upvoted answers – hasen j Feb 21 at 0:16
1  
Not to mention that NaN doesn't equal anything, so this will not work. – bk1e Feb 21 at 22:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.