Performs a real Schur decomposition of a square matrix. More...
#include <RealSchur.h>
Public Types | |
enum | { RowsAtCompileTime = MatrixType::RowsAtCompileTime, ColsAtCompileTime = MatrixType::ColsAtCompileTime, Options = MatrixType::Options, MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime, MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime } |
typedef _MatrixType | MatrixType |
typedef MatrixType::Scalar | Scalar |
typedef std::complex< typename NumTraits< Scalar >::Real > | ComplexScalar |
typedef MatrixType::Index | Index |
typedef Matrix< ComplexScalar, ColsAtCompileTime, 1, Options &~RowMajor, MaxColsAtCompileTime, 1 > | EigenvalueType |
typedef Matrix< Scalar, ColsAtCompileTime, 1, Options &~RowMajor, MaxColsAtCompileTime, 1 > | ColumnVectorType |
Public Member Functions | |
RealSchur (Index size=RowsAtCompileTime==Dynamic?1:RowsAtCompileTime) | |
Default constructor. | |
RealSchur (const MatrixType &matrix, bool computeU=true) | |
Constructor; computes real Schur decomposition of given matrix. | |
const MatrixType & | matrixU () const |
Returns the orthogonal matrix in the Schur decomposition. | |
const MatrixType & | matrixT () const |
Returns the quasi-triangular matrix in the Schur decomposition. | |
RealSchur & | compute (const MatrixType &matrix, bool computeU=true) |
Computes Schur decomposition of given matrix. | |
ComputationInfo | info () const |
Reports whether previous computation was successful. | |
Static Public Attributes | |
static const int | m_maxIterations = 40 |
Maximum number of iterations. |
Performs a real Schur decomposition of a square matrix.
_MatrixType | the type of the matrix of which we are computing the real Schur decomposition; this is expected to be an instantiation of the Matrix class template. |
Given a real square matrix A, this class computes the real Schur decomposition: where U is a real orthogonal matrix and T is a real quasi-triangular matrix. An orthogonal matrix is a matrix whose inverse is equal to its transpose, . A quasi-triangular matrix is a block-triangular matrix whose diagonal consists of 1-by-1 blocks and 2-by-2 blocks with complex eigenvalues. The eigenvalues of the blocks on the diagonal of T are the same as the eigenvalues of the matrix A, and thus the real Schur decomposition is used in EigenSolver to compute the eigendecomposition of a matrix.
Call the function compute() to compute the real Schur decomposition of a given matrix. Alternatively, you can use the RealSchur(const MatrixType&, bool) constructor which computes the real Schur decomposition at construction time. Once the decomposition is computed, you can use the matrixU() and matrixT() functions to retrieve the matrices U and T in the decomposition.
The documentation of RealSchur(const MatrixType&, bool) contains an example of the typical use of this class.
typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> RealSchur< _MatrixType >::ColumnVectorType |
typedef std::complex<typename NumTraits<Scalar>::Real> RealSchur< _MatrixType >::ComplexScalar |
typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> RealSchur< _MatrixType >::EigenvalueType |
typedef _MatrixType RealSchur< _MatrixType >::MatrixType |
anonymous enum |
RealSchur< _MatrixType >::RealSchur | ( | Index | size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime |
) | [inline] |
Default constructor.
[in] | size | Positive integer, size of the matrix whose Schur decomposition will be computed. |
The default constructor is useful in cases in which the user intends to perform decompositions via compute(). The size
parameter is only used as a hint. It is not an error to give a wrong size
, but it may impair performance.
RealSchur< _MatrixType >::RealSchur | ( | const MatrixType & | matrix, | |
bool | computeU = true | |||
) | [inline] |
Constructor; computes real Schur decomposition of given matrix.
[in] | matrix | Square matrix whose Schur decomposition is to be computed. |
[in] | computeU | If true, both T and U are computed; if false, only T is computed. |
This constructor calls compute() to compute the Schur decomposition.
Example:
Output:
RealSchur& RealSchur< _MatrixType >::compute | ( | const MatrixType & | matrix, | |
bool | computeU = true | |||
) |
Computes Schur decomposition of given matrix.
[in] | matrix | Square matrix whose Schur decomposition is to be computed. |
[in] | computeU | If true, both T and U are computed; if false, only T is computed. |
*this
The Schur decomposition is computed by first reducing the matrix to Hessenberg form using the class HessenbergDecomposition. The Hessenberg matrix is then reduced to triangular form by performing Francis QR iterations with implicit double shift. The cost of computing the Schur decomposition depends on the number of iterations; as a rough guide, it may be taken to be flops if computeU is true and flops if computeU is false.
Example:
Output:
ComputationInfo RealSchur< _MatrixType >::info | ( | ) | const [inline] |
Reports whether previous computation was successful.
Success
if computation was succesful, NoConvergence
otherwise. const MatrixType& RealSchur< _MatrixType >::matrixT | ( | ) | const [inline] |
Returns the quasi-triangular matrix in the Schur decomposition.
const MatrixType& RealSchur< _MatrixType >::matrixU | ( | ) | const [inline] |
Returns the orthogonal matrix in the Schur decomposition.
computeU
was set to true (the default value).const int RealSchur< _MatrixType >::m_maxIterations = 40 [static] |
Maximum number of iterations.
Maximum number of iterations allowed for an eigenvalue to converge.