Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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

VersionDescription
1.0.0initial version

Author

Allan CORNET