c = rcond(A, p)
| Parameter | Description |
|---|---|
| A | a numeric value: square or rectangular (double or single) |
| p | norm type: Inf, 'fro', 1, 2 (default) |
| Parameter | Description |
|---|---|
| c | 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 |