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

eig, cond.

History

Author

Allan CORNET

Last updated