Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

template<class T>
bool Impala::IsNan ( x  )  [inline]

Definition at line 22 of file Math.h.

Referenced by Impala::Core::Feature::FeatureTable::Diff(), and Impala::Core::Array::Trait::BpoAtan2< DstArrayT, Src1ArrayT, Src2ArrayT >::DoIt().

00023 {
00024 #ifdef WIN32
00025     return _isnan(x) ? true : false;
00026 #else
00027     return isnan(x) ? true : false;
00028 #endif
00029 }


Generated on Thu Jan 13 09:13:56 2011 for ImpalaSrc by  doxygen 1.5.1