Home || Architecture || Video Search || Visual Search || Scripts || Applications || 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(), Impala::Application::Table::DoDiffFeatureTable(), 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 Fri Mar 19 10:35:32 2010 for ImpalaSrc by  doxygen 1.5.1