rcond
Inverse condition number.
📝Syntax
res = rcond(x)
📥Input Arguments
Parameter Description
x a numeric value: scalar or square matrix (double or single)
📤Output Arguments
Parameter Description
res a numeric value: a scalar.
📄Description

rcond(x) computes the reciprocal of the condition of x in the 1-norm.

💡Examples
X = rand(10, 10);
r = rcond(X);
🔗See Also
invcond
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub