TMatrixDEigen.
Eigenvalues and eigenvectors of a real matrix.
If A is not symmetric, then the eigenvalue matrix D is block diagonal with the real eigenvalues in 1-by-1 blocks and any complex eigenvalues, a + i*b, in 2-by-2 blocks, [a, b; -b, a]. That is, if the complex eigenvalues look like
u + iv . . . . .
. u - iv . . . .
then D looks like
This keeps V a real matrix in both symmetric and non-symmetric cases, and A*V = V*D.
Definition at line 26 of file TMatrixDEigen.h.
const TMatrixD TMatrixDEigen::GetEigenValues |
( |
| ) |
const |
Computes the block diagonal eigenvalue matrix.
If the original matrix A is not symmetric, then the eigenvalue matrix D is block diagonal with the real eigenvalues in 1-by-1 blocks and any complex eigenvalues, a + i*b, in 2-by-2 blocks, [a, b; -b, a]. That is, if the complex eigenvalues look like
u + iv . . . . .
. u - iv . . . .
then D looks like
This keeps V a real matrix in both symmetric and non-symmetric cases, and A*V = V*D.
Indexing: If matrix A has the index/shape (rowLwb,rowUpb,rowLwb,rowUpb) each eigen-vector must have the shape (rowLwb,rowUpb) . For convenience, the column index of the eigen-vector matrix also runs from rowLwb to rowUpb so that the returned matrix has also index/shape (rowLwb,rowUpb,rowLwb,rowUpb) .
Definition at line 789 of file TMatrixDEigen.cxx.