<< chol | Linear algebra | condeig >> |
c = rcond(A, p) |
a numeric value: square or rectangular (double or single)
norm type: Inf, 'fro', 1, 2 (default)
a numeric value: a scalar.
c = cond(A) returns the 2-norm condition number for inversion.
c = cond(A, p) returns the p-norm condition number, where p can be 1, 2, Inf, or 'fro'.
X = rand(10, 10);
r = cond(X)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET