condeig
Condition number with respect to eigenvalues.
📝 Syntax
C = condeig(A)
[V, D, S] = condeig(A)
📥 Input argument
A - Input matrix
📤 Output argument
C - a vector of condition numbers for the eigenvalues of A.
📄 Description
C = condeig(A) returns a vector of condition numbers for the eigenvalues of A.
💡 Example
A = [10, 20; 30, 40];
S = condeig(A)🔗 See also
🕔 History
Version
📄 Description
1.0.0
initial version
Last updated
Was this helpful?