C = condeig(A)
[V, D, S] = condeig(A)
| Parameter | Description |
|---|---|
| A | Input matrix |
| Parameter | Description |
|---|---|
| C | a vector of condition numbers for the eigenvalues of A. |
C = condeig(A) returns a vector of condition numbers for the eigenvalues of A.
A = [10, 20; 30, 40];
S = condeig(A)
| Version | Description |
|---|---|
| 1.0.0 | initial version |