res = rcond(x)
| Parameter | Description |
|---|---|
| x | a numeric value: scalar or square matrix (double or single) |
| Parameter | Description |
|---|---|
| res | a numeric value: a scalar. |
rcond(x) computes the reciprocal of the condition of x in the 1-norm.
X = rand(10, 10);
r = rcond(X);
| Version | Description |
|---|---|
| 1.0.0 | initial version |