Computes the generalized eigenvalues and eigenvectors of a pair of general matrices. More...
#include <GeneralizedEigenSolver.h>
Public Types | |
enum | { RowsAtCompileTime = MatrixType::RowsAtCompileTime, ColsAtCompileTime = MatrixType::ColsAtCompileTime, Options = MatrixType::Options, MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime, MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime } |
typedef std::complex< RealScalar > | ComplexScalar |
Complex scalar type for MatrixType. More... | |
typedef Matrix< ComplexScalar, ColsAtCompileTime, 1, Options &~RowMajor, MaxColsAtCompileTime, 1 > | ComplexVectorType |
Type for vector of complex scalar values eigenvalues as returned by alphas(). More... | |
typedef CwiseBinaryOp< internal::scalar_quotient_op< ComplexScalar, Scalar >, ComplexVectorType, VectorType > | EigenvalueType |
Expression type for the eigenvalues as returned by eigenvalues(). More... | |
typedef Matrix< ComplexScalar, RowsAtCompileTime, ColsAtCompileTime, Options, MaxRowsAtCompileTime, MaxColsAtCompileTime > | EigenvectorsType |
Type for matrix of eigenvectors as returned by eigenvectors(). More... | |
typedef Eigen::Index | Index |
typedef _MatrixType | MatrixType |
Synonym for the template parameter _MatrixType . More... | |
typedef NumTraits< Scalar >::Real | RealScalar |
typedef MatrixType::Scalar | Scalar |
Scalar type for matrices of type MatrixType. More... | |
typedef Matrix< Scalar, ColsAtCompileTime, 1, Options &~RowMajor, MaxColsAtCompileTime, 1 > | VectorType |
Type for vector of real scalar values eigenvalues as returned by betas(). More... | |
Public Member Functions | |
ComplexVectorType | alphas () const |
VectorType | betas () const |
GeneralizedEigenSolver & | compute (const MatrixType &A, const MatrixType &B, bool computeEigenvectors=true) |
Computes generalized eigendecomposition of given matrix. More... | |
EigenvalueType | eigenvalues () const |
Returns an expression of the computed generalized eigenvalues. More... | |
EigenvectorsType | eigenvectors () const |
GeneralizedEigenSolver () | |
Default constructor. More... | |
GeneralizedEigenSolver (const MatrixType &A, const MatrixType &B, bool computeEigenvectors=true) | |
Constructor; computes the generalized eigendecomposition of given matrix pair. More... | |
GeneralizedEigenSolver (Index size) | |
Default constructor with memory preallocation. More... | |
ComputationInfo | info () const |
GeneralizedEigenSolver & | setMaxIterations (Index maxIters) |
Static Protected Member Functions | |
static void | check_template_parameters () |
Protected Attributes | |
ComplexVectorType | m_alphas |
VectorType | m_betas |
EigenvectorsType | m_eivec |
RealQZ< MatrixType > | m_realQZ |
ComplexVectorType | m_tmp |
bool | m_valuesOkay |
bool | m_vectorsOkay |
Computes the generalized eigenvalues and eigenvectors of a pair of general matrices.
\eigenvalues_module
_MatrixType | the type of the matrices of which we are computing the eigen-decomposition; this is expected to be an instantiation of the Matrix class template. Currently, only real matrices are supported. |
The generalized eigenvalues and eigenvectors of a matrix pair and are scalars and vectors such that . If is a diagonal matrix with the eigenvalues on the diagonal, and is a matrix with the eigenvectors as its columns, then . The matrix is almost always invertible, in which case we have . This is called the generalized eigen-decomposition.
The generalized eigenvalues and eigenvectors of a matrix pair may be complex, even when the matrices are real. Moreover, the generalized eigenvalue might be infinite if the matrix B is singular. To workaround this difficulty, the eigenvalues are provided as a pair of complex and real such that: . If is (nearly) zero, then one can consider the well defined left eigenvalue such that: , or even where is called the left eigenvector.
Call the function compute() to compute the generalized eigenvalues and eigenvectors of a given matrix pair. Alternatively, you can use the GeneralizedEigenSolver(const MatrixType&, const MatrixType&, bool) constructor which computes the eigenvalues and eigenvectors at construction time. Once the eigenvalue and eigenvectors are computed, they can be retrieved with the eigenvalues() and eigenvectors() functions.
Here is an usage example of this class: Example:
Output:
Definition at line 58 of file GeneralizedEigenSolver.h.
typedef std::complex<RealScalar> Eigen::GeneralizedEigenSolver< _MatrixType >::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.
Definition at line 84 of file GeneralizedEigenSolver.h.
typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> Eigen::GeneralizedEigenSolver< _MatrixType >::ComplexVectorType |
Type for vector of complex scalar values eigenvalues as returned by alphas().
This is a column vector with entries of type ComplexScalar. The length of the vector is the size of MatrixType.
Definition at line 98 of file GeneralizedEigenSolver.h.
typedef CwiseBinaryOp<internal::scalar_quotient_op<ComplexScalar,Scalar>,ComplexVectorType,VectorType> Eigen::GeneralizedEigenSolver< _MatrixType >::EigenvalueType |
Expression type for the eigenvalues as returned by eigenvalues().
Definition at line 102 of file GeneralizedEigenSolver.h.
typedef Matrix<ComplexScalar, RowsAtCompileTime, ColsAtCompileTime, Options, MaxRowsAtCompileTime, MaxColsAtCompileTime> Eigen::GeneralizedEigenSolver< _MatrixType >::EigenvectorsType |
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.
Definition at line 109 of file GeneralizedEigenSolver.h.
typedef Eigen::Index Eigen::GeneralizedEigenSolver< _MatrixType >::Index |
Definition at line 76 of file GeneralizedEigenSolver.h.
typedef _MatrixType Eigen::GeneralizedEigenSolver< _MatrixType >::MatrixType |
Synonym for the template parameter _MatrixType
.
Definition at line 63 of file GeneralizedEigenSolver.h.
typedef NumTraits<Scalar>::Real Eigen::GeneralizedEigenSolver< _MatrixType >::RealScalar |
Definition at line 75 of file GeneralizedEigenSolver.h.
typedef MatrixType::Scalar Eigen::GeneralizedEigenSolver< _MatrixType >::Scalar |
Scalar type for matrices of type MatrixType.
Definition at line 74 of file GeneralizedEigenSolver.h.
typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> Eigen::GeneralizedEigenSolver< _MatrixType >::VectorType |
Type for vector of real scalar values eigenvalues as returned by betas().
This is a column vector with entries of type Scalar. The length of the vector is the size of MatrixType.
Definition at line 91 of file GeneralizedEigenSolver.h.
anonymous enum |
Enumerator | |
---|---|
RowsAtCompileTime | |
ColsAtCompileTime | |
Options | |
MaxRowsAtCompileTime | |
MaxColsAtCompileTime |
Definition at line 65 of file GeneralizedEigenSolver.h.
|
inline |
Default constructor.
The default constructor is useful in cases in which the user intends to perform decompositions via EigenSolver::compute(const MatrixType&, bool).
Definition at line 118 of file GeneralizedEigenSolver.h.
|
inlineexplicit |
Default constructor with memory preallocation.
Like the default constructor but with preallocation of the internal data according to the specified problem size.
Definition at line 133 of file GeneralizedEigenSolver.h.
|
inline |
Constructor; computes the generalized eigendecomposition of given matrix pair.
[in] | A | Square matrix whose eigendecomposition is to be computed. |
[in] | B | 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 generalized eigenvalues and eigenvectors.
Definition at line 155 of file GeneralizedEigenSolver.h.
|
inline |
This vector permits to reconstruct the j-th eigenvalues as alphas(i)/betas(j).
Definition at line 213 of file GeneralizedEigenSolver.h.
|
inline |
This vector permits to reconstruct the j-th eigenvalues as alphas(i)/betas(j).
Definition at line 224 of file GeneralizedEigenSolver.h.
|
inlinestaticprotected |
Definition at line 271 of file GeneralizedEigenSolver.h.
GeneralizedEigenSolver< MatrixType > & Eigen::GeneralizedEigenSolver< MatrixType >::compute | ( | const MatrixType & | A, |
const MatrixType & | B, | ||
bool | computeEigenvectors = true |
||
) |
Computes generalized eigendecomposition of given matrix.
[in] | A | Square matrix whose eigendecomposition is to be computed. |
[in] | B | 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 real 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 real generalized Schur form using the RealQZ class. The generalized Schur decomposition is then used to compute the eigenvalues and eigenvectors.
The cost of the computation is dominated by the cost of the generalized Schur decomposition.
This method reuses of the allocated data in the GeneralizedEigenSolver object.
Definition at line 287 of file GeneralizedEigenSolver.h.
|
inline |
Returns an expression of the computed generalized eigenvalues.
It is a shortcut for
Not that betas might contain zeros. It is therefore not recommended to use this function, but rather directly deal with the alphas and betas vectors.
The 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.
Definition at line 202 of file GeneralizedEigenSolver.h.
|
inline |
Definition at line 179 of file GeneralizedEigenSolver.h.
|
inline |
Definition at line 255 of file GeneralizedEigenSolver.h.
|
inline |
Sets the maximal number of iterations allowed.
Definition at line 263 of file GeneralizedEigenSolver.h.
|
protected |
Definition at line 278 of file GeneralizedEigenSolver.h.
|
protected |
Definition at line 279 of file GeneralizedEigenSolver.h.
|
protected |
Definition at line 277 of file GeneralizedEigenSolver.h.
|
protected |
Definition at line 281 of file GeneralizedEigenSolver.h.
|
protected |
Definition at line 282 of file GeneralizedEigenSolver.h.
|
protected |
Definition at line 280 of file GeneralizedEigenSolver.h.
|
protected |
Definition at line 280 of file GeneralizedEigenSolver.h.