<Float64Algorithms> Data Interface

Provides script language access to C++ objects of this type.

Class HierarchyNo registered superclass.

Function Members

Function members are as follows:

Return Type Function Name Documentation
int32IsNanReturns true if the value submitted is a NAN.
int32IsSameReturns true of the left and right handle <float64> values are within double epsilon of each other ( using the DBL_EPSILON preprocessor constant for the comparison ).
int32MemcmpCompares two objects using the memcmp function. Returns 0 if the objects match exactly. Otherwise returns non-zero.
stringPrintBitPatternReturns a string with the bit pattern.
int32WithinReturns true if value A is within a certain distance from value B. The underlying expression performs the comparison: fabs( a - b ) <= tolerance;