  rcond
  Builtin Function



      SSyynnooppssiiss
        Condition number.

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

      DDeessccrriippttiioonn
        Rcond computes an estimate of the condition number of the input
        matrix, _A. rcond() uses the LAPACK routines DGECON, or ZGECON.

        Probably the most published way to compute the condition of a
        matrix is:



          Kcond = ||A|| * ||inv(A)||





     Another method is to use the 1st and last singular values of A:



          Kcond = sigma(1)/sigma(n)





     rcond computes an ESTIMATE of the condition number without
     computing all of the columns of inv(A). For more information see
     the LAPACK User's Guide.

     See Also  inv, det, lu

























