FloatIsPositive Function |
Unit
QESBPCSMath
Declaration
Function FloatIsPositive(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 FloatIsPositive (const X: Extended): Boolean; begin Result := (X >= ESBTolerance); End; |
|