Initializing help system before first use

isfinite

isfinite


Purpose
Test whether a real value is finite.
Synopsis
function isfinite(r: real):boolean
Argument
The value to test
Return value
true if the value is neither (-)INFINITY nor NAN .
Further information
The call isfinite(v) is equivalent to (not isnan(v) and not isinf(v)).
Related topics