Navigation

Operators and Keywords

Function List:

C++ API

: isfinite (x)

Return a logical array which is true where the elements of x are finite values and false where they are not.

For example:

isfinite ([13, Inf, NA, NaN])
    ⇒ [ 1, 0, 0, 0 ]

See also: isinf, isnan, isna.

Package: octave