FloatIsNegative Function |
Unit
QESBPCSMath
Declaration
Function FloatIsNegative(const X: Extended): Boolean;
Description
For Values with large negative exponents, ESBTolerance will need to be changed to a smaller value.
Parameters |
X | Float to process. |
Returns
X <= -ESBTolerance.
Category
Comparison between Integers and FloatsImplementation
function FloatIsNegative (const X: Extended): Boolean; begin Result := (X <= -ESBTolerance); End; |
|