Returns a value indicating if the input variable isfinite or not.
fmach = MACHINE(/Float)
a = [fmach.nan, 3.0, fmach.pos_inf, 5.2, $ fmach.neg_inf]
b = FINITE(a)
INFO, b
B BYTE = Array(5)
FOR i = 0, 4 DO PRINT, a(i), b(i)
NaN 0
3.00000 1
Inf 0
5.20000 1
-Inf 0
For more details, see Chapter 10, Programming with PV-WAVE, in the PV-WAVE Programmer's Guide.