Member of the linalgebra class.
c = condest(a)
[c, d] = condest(a)
Returns a lower bound for the 1-norm condition number of a square matrix.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns a lower bound for the 1-norm condition number of a. |
| d | Returns the approximation of a null vector. d is a vector of the same size as the number of columns in a. |
A = [1, 2, 3; 0, 1, 1; 4, 3, 1]
D = condest(A)