MATLAB Function Reference | Search  Help Desk |
rcond | See Also |
Matrix reciprocal condition number estimate
c = rcond(A)
c = rcond(A) returns an estimate for the reciprocal of the condition of
A
in A
is well conditioned, rcond(A)
is near 1.0. If A
is badly conditioned, rcond(A)
is near 0.0. Compared to cond
, rcond
is a more efficient, but less reliable, method of estimating the condition of a matrix.
The rcond
function uses the condition estimator from the LINPACK routine ZGECO
.