ZGEEV Example
For a detailed description and reference information on this function, please visit:
The routine computes the eigenvalues and, optionally, the left and/or right eigenvectors of a square complex general matrix
A
.
The right eigenvector
of
v
(j)A
satisfies the following formula:
A*v(j) = lambda(j)*v(j)
where
lambda
(j)The left eigenvector
of
u
(j)A
satisfies the following formula:
u(j)H*A = lambda(j)*u(j)H
where
u
(j)H
u
(j)The computed eigenvectors are normalized so that their Euclidean norm equals one and the largest component is real.
Fortran-77 Interface
C Interface
Please refer to the
Matrix Layout section of the C Interface Conventions for the description of Row Major (C default) and Column Major (Fortran default).