MATLAB Function Reference
  Go to function:
    Search    Help Desk 
condeig    See Also

Condition number with respect to eigenvalues

Syntax

Description

c = condeig(A) returns a vector of condition numbers for the eigenvalues of A. These condition numbers are the reciprocals of the cosines of the angles between the left and right eigenvectors.

[V,D,s] = condeig(A) is equivalent to: [V,D] = eig(A); s = condeig(A);.

Large condition numbers imply that A is near a matrix with multiple eigenvalues.

See Also

balance     Improve accuracy of computed eigenvalues

cond        Condition number with respect to inversion

eig         Eigenvalues and eigenvectors



[ Previous | Help Desk | Next ]