PCL
|
Functions | |
bool | pcl::IsFinite (double x) noexcept |
bool | pcl::IsFinite (float x) noexcept |
int | pcl::IsInfinity (double x) noexcept |
int | pcl::IsInfinity (float x) noexcept |
bool | pcl::IsNaN (double x) noexcept |
bool | pcl::IsNaN (float x) noexcept |
bool | pcl::IsNegativeZero (double x) noexcept |
bool | pcl::IsNegativeZero (float x) noexcept |
|
inlinenoexcept |
Returns true iff the specified 64-bit floating point number is finite. A number is finite if it is neither NaN (Not a Number) nor positive or negative infinity.
|
inlinenoexcept |
Returns true iff the specified 32-bit floating point number is finite. A number is finite if it is neither NaN (Not a Number) nor positive or negative infinity.
Definition at line 178 of file Math.h.
Referenced by pcl::ProjectionBase::Direct(), pcl::ProjectionBase::Inverse(), pcl::LinearFit::IsValid(), and pcl::TwoSidedEstimate::IsValid().
|
inlinenoexcept |
Returns a nonzero integer value if the specified 64-bit floating point number is an infinity.
This function returns:
+1 if x is positive infinity. -1 if x is negative infinity. 0 if x is either NaN or a finite value.
|
inlinenoexcept |
Returns a nonzero integer value if the specified 32-bit floating point number is an infinity.
This function returns:
+1 if x is positive infinity. -1 if x is negative infinity. 0 if x is either NaN or a finite value.
|
inlinenoexcept |
Returns true iff the specified 64-bit floating point number is NaN. A NaN (Not A Number) is a special value in the IEEE 754 standard used to represent an undefined or unrepresentable value, such as the result of invalid operations like 0/0, or real operations with complex results as the square root of a negative number.
|
inlinenoexcept |
Returns true iff the specified 32-bit floating point number is NaN. A NaN (Not A Number) is a special value in the IEEE 754 standard used to represent an undefined or unrepresentable value, such as the result of invalid operations like 0/0, or real operations with complex results as the square root of a negative number.
|
inlinenoexcept |