Visible to Intel only — GUID: GUID-D18BE592-8E08-47AB-8F36-97052E1007F7
DGEEV Example
For a detailed description and reference information on this function, see the Intel® oneAPI Math Kernel Library Developer Reference.
The routine computes a square real general matrix A, the eigenvalues and, optionally, the left and/or right eigenvectors.
The right eigenvector v(j) of A satisfies the following formula:
A*v(j) = lambda(j)*v(j)
where
lambda(j) is its eigenvalue.
The left eigenvector u(j) of A satisfies the following formula:
u(j)H*A = lambda(j)*u(j)H
where
u(j)H denotes the conjugate transpose of 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).