Isfinite

Determines if the given argument has finite values for example, it is normal, subnormal or zero, but not infinite or NaN.

The function returns TRUE if the argument does not contains any INF or NaN value, FALSE otherwise.

Syntax

isfinite(x)

Types
 Variable NameValue TypeVariable Type
Arguments:xreal, complexscalar, vector, matrix, signal, xy-data
Result: zbool scalar
Calculator Input

Use the isfinite button to complete the operation.

Example
IDDescriptionTypeValueExpression
a Result BOOL trueisfinite(0)
b Result BOOL trueisfinite(2^1023)
c Result BOOL falseisfinite(2^1024)
d Result BOOL falseisfinite(1/0)
x COMPLEX REAL SIGNAL   signal([1,2],[1,1/0],[real(1/0),imag(1/0)])
z Result BOOL falseisfinite(x)
y REAL SIGNAL   signal([1,2],[1,2],[3,4])
z Result BOOL trueisfinite(y)