FINITE
Syntax | Return Value | Arguments | Keywords | Examples | Version History | See Also
The FINITE function identifies whether or not a given argument is finite.
Syntax
Result = FINITE( X [, /INFINITY] [, /NAN] [, SIGN=value])
Return Value
Returns 1 (True) if its argument is finite. If the argument is infinite or not a defined number (NaN), the FINITE function returns 0 (False). The result is a byte expression of the same structure as the argument X.
Note
See Special Floating-Point Values (Application Programming) for more information on IEEE floating-point values.
Arguments
X
A floating-point, double-precision, or complex scalar or array expression. Strings are first converted to floating-point. This function is meaningless for byte, integer, or longword arguments.
Keywords
INFINITY
Set this keyword to cause FINITE to return True if the X argument is the IEEE special floating-point value Infinity (either positive or negative), or False otherwise.
NAN
Set this keyword to cause FINITE to return True if the X argument is the IEEE special floating-point value "Not A Number" (NaN), or False otherwise.
SIGN
If the INFINITY or NAN keyword is set, then set this keyword to one of the following values:
If neither the INFINITY nor NAN keyword is set, then this keyword is ignored.
Thread Pool Keywords
This routine is written to make use of IDL's thread pool, which can increase execution speed on systems with multiple CPUs. The values stored in the !CPU system variable control whether IDL uses the thread pool for a given computation. In addition, you can use the thread pool keywords TPOOL_MAX_ELTS, TPOOL_MIN_ELTS, and TPOOL_NOTHREAD to override the defaults established by !CPU for a single invocation of this routine. See Thread Pool Keywords for details.
Examples
Example 1
To find out if the logarithm of 5.0 is finite, enter:
IDL prints "1" because the argument is finite.
Example 2
To determine which elements of an array are infinity or NaN (Not a Number) values:
Find the location of values in A that are positive or negative Infinity:
PRINT, WHERE(FINITE(A, /INFINITY))
IDL prints:
Find the location of values in A that are NaN:
IDL prints:
Find the location of values in A that are negative Infinity:
PRINT, WHERE(FINITE(A, /INFINITY, SIGN=-1))
IDL prints:
Find the location of values in A that are +NaN:
PRINT, WHERE(FINITE(A, /NAN, SIGN=1))
IDL prints:
Note
On some platforms, there is no distinction between +NaN and -NaN.
Version History
See Also
CHECK_MATH, MACHAR, !VALUES, Special Floating-Point Values (Application Programming).