Computes eigenvalues and eigenvectors of general complex matrices. More...
#include <ComplexEigenSolver.h>
Public Types | |
| typedef std::complex< RealScalar > | ComplexScalar |
| Complex scalar type for MatrixType. | |
| typedef Matrix< ComplexScalar, ColsAtCompileTime, 1, Options &(~RowMajor), MaxColsAtCompileTime, 1 > | EigenvalueType |
| Type for vector of eigenvalues as returned by eigenvalues(). | |
| typedef Matrix< ComplexScalar, RowsAtCompileTime, ColsAtCompileTime, Options, MaxRowsAtCompileTime, MaxColsAtCompileTime > | EigenvectorType |
| Type for matrix of eigenvectors as returned by eigenvectors(). | |
| typedef _MatrixType | MatrixType |
Synonym for the template parameter _MatrixType. | |
| typedef MatrixType::Scalar | Scalar |
| Scalar type for matrices of type MatrixType. | |
Public Member Functions | |
| ComplexEigenSolver () | |
| Default constructor. | |
| ComplexEigenSolver (const MatrixType &matrix, bool computeEigenvectors=true) | |
| Constructor; computes eigendecomposition of given matrix. | |
| ComplexEigenSolver (Index size) | |
| Default Constructor with memory preallocation. | |
| ComplexEigenSolver & | compute (const MatrixType &matrix, bool computeEigenvectors=true) |
| Computes eigendecomposition of given matrix. | |
| const EigenvalueType & | eigenvalues () const |
| Returns the eigenvalues of given matrix. | |
| const EigenvectorType & | eigenvectors () const |
| Returns the eigenvectors of given matrix. | |
| ComputationInfo | info () const |
| Reports whether previous computation was successful. | |
Computes eigenvalues and eigenvectors of general complex matrices.
This is defined in the Eigenvalues module.
| _MatrixType | the type of the matrix of which we are computing the eigendecomposition; this is expected to be an instantiation of the Matrix class template. |
The eigenvalues and eigenvectors of a matrix 








The main function in this class is compute(), which computes the eigenvalues and eigenvectors of a given function. The documentation for that function contains an example showing the main features of the class.
| typedef std::complex<RealScalar> ComplexScalar |
Complex scalar type for MatrixType.
This is std::complex<Scalar> if Scalar is real (e.g., float or double) and just Scalar if Scalar is complex.
| typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options&(~RowMajor), MaxColsAtCompileTime, 1> EigenvalueType |
Type for vector of eigenvalues as returned by eigenvalues().
This is a column vector with entries of type ComplexScalar. The length of the vector is the size of MatrixType.
| typedef Matrix<ComplexScalar, RowsAtCompileTime, ColsAtCompileTime, Options, MaxRowsAtCompileTime, MaxColsAtCompileTime> EigenvectorType |
Type for matrix of eigenvectors as returned by eigenvectors().
This is a square matrix with entries of type ComplexScalar. The size is the same as the size of MatrixType.
|
inline |
|
inline |
Default Constructor with memory preallocation.
Like the default constructor but with preallocation of the internal data according to the specified problem size.
|
inline |
Constructor; computes eigendecomposition of given matrix.
| [in] | matrix | Square matrix whose eigendecomposition is to be computed. |
| [in] | computeEigenvectors | If true, both the eigenvectors and the eigenvalues are computed; if false, only the eigenvalues are computed. |
This constructor calls compute() to compute the eigendecomposition.
References compute().
| ComplexEigenSolver< MatrixType > & compute | ( | const MatrixType & | matrix, |
| bool | computeEigenvectors = true ) |
Computes eigendecomposition of given matrix.
| [in] | matrix | Square matrix whose eigendecomposition is to be computed. |
| [in] | computeEigenvectors | If true, both the eigenvectors and the eigenvalues are computed; if false, only the eigenvalues are computed. |
*this This function computes the eigenvalues of the complex matrix matrix. The eigenvalues() function can be used to retrieve them. If computeEigenvectors is true, then the eigenvectors are also computed and can be retrieved by calling eigenvectors().
The matrix is first reduced to Schur form using the ComplexSchur class. The Schur decomposition is then used to compute the eigenvalues and eigenvectors.
The cost of the computation is dominated by the cost of the Schur decomposition, which is 

Example:
Output:
Here is a random 4x4 matrix, A:
(0.68,-0.211) (-0.444,0.108) (0.271,0.435) (-0.687,-0.198)
(0.566,0.597) (-0.0452,0.258) (-0.717,0.214) (-0.74,-0.782)
(0.823,-0.605) (-0.27,0.0268) (-0.967,-0.514) (0.998,-0.563)
(-0.33,0.536) (0.904,0.832) (-0.726,0.608) (0.0259,0.678)
The eigenvalues of A are:
(0.505,0.137)
(1.22,-0.758)
(-0.402,1.52)
(-1.63,-0.691)
The matrix of eigenvectors, V, is:
(0.246,-0.106) (0.263,0.418) (0.296,-0.0417) (-0.122,-0.271)
(0.205,-0.629) (-0.457,0.466) (0.456,-0.244) (0.247,-0.23)
(0.432,-0.0359) (-0.0146,-0.0651) (-0.334,0.191) (0.859,0.0877)
(0.301,0.46) (-0.397,-0.41) (-0.328,-0.623) (-0.116,-0.195)
Consider the first eigenvalue, lambda = (0.505,0.137)
If v is the corresponding eigenvector, then lambda * v =
(0.139,-0.0197)
(0.19,-0.29)
(0.223,0.0412)
(0.0891,0.274)
... and A * v =
(0.139,-0.0197)
(0.19,-0.29)
(0.223,0.0412)
(0.0891,0.274)
Finally, V * D * V^(-1) =
(0.68,-0.211) (-0.444,0.108) (0.271,0.435) (-0.687,-0.198)
(0.566,0.597) (-0.0452,0.258) (-0.717,0.214) (-0.74,-0.782)
(0.823,-0.605) (-0.27,0.0268) (-0.967,-0.514) (0.998,-0.563)
(-0.33,0.536) (0.904,0.832) (-0.726,0.608) (0.0259,0.678)
References ComplexEigenSolver(), and Eigen::Success.
Referenced by ComplexEigenSolver().
|
inline |
Returns the eigenvalues of given matrix.
This function returns a column vector containing the eigenvalues. Eigenvalues are repeated according to their algebraic multiplicity, so there are as many eigenvalues as rows in the matrix. The eigenvalues are not sorted in any particular order.
Example:
Output:
The eigenvalues of the 3x3 matrix of ones are: (0,-0) (0,0) (3,0)
|
inline |
Returns the eigenvectors of given matrix.
computeEigenvectors was set to true (the default).This function returns a matrix whose columns are the eigenvectors. Column 



Example:
Output:
The first eigenvector of the 3x3 matrix of ones is: (0.154,0) (-0.772,0) (0.617,0)
|
inline |
Reports whether previous computation was successful.
Success if computation was succesful, NoConvergence otherwise.