  finite
  Builtin Function



      SSyynnooppssiiss
        Test variable for finite values.

      SSyynnttaaxx
        finite ( _A )

      DDeessccrriippttiioonn
        finite returns a matrix, the same size as the input (_A),
        consisting of ones and zeros. The elements of the return matrix
        are 1 if the corresponding value of _A is finite, or zero if the
        corresponding element of _A is an Inf or a NaN.

        Example:


          > a = [1, inf(), 3; 4, 5, 6; inf(), 8, nan()]
           a =
                  1        inf          3
                  4          5          6
                inf          8  nan0x80000000
          > finite (a)
                  1          0          1
                  1          1          1
                  0          1          0




     SSeeee AAllssoo
        isinf, isnan































