Lines Matching defs:MatrixType

47   * GeneralizedEigenSolver(const MatrixType&, const MatrixType&, bool) constructor which computes the
63 typedef _MatrixType MatrixType;
66 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
67 ColsAtCompileTime = MatrixType::ColsAtCompileTime,
68 Options = MatrixType::Options,
69 MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
70 MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime
73 /** \brief Scalar type for matrices of type #MatrixType. */
74 typedef typename MatrixType::Scalar Scalar;
78 /** \brief Complex scalar type for #MatrixType.
89 * The length of the vector is the size of #MatrixType.
96 * The length of the vector is the size of #MatrixType.
107 * The size is the same as the size of #MatrixType.
114 * perform decompositions via EigenSolver::compute(const MatrixType&, bool).
155 GeneralizedEigenSolver(const MatrixType& A, const MatrixType& B, bool computeEigenvectors = true)
173 * GeneralizedEigenSolver(const MatrixType&,const MatrixType&, bool) or the member function
174 * compute(const MatrixType&, const MatrixType& bool) has been called before, and
193 * GeneralizedEigenSolver(const MatrixType&,const MatrixType&,bool) or the member function
194 * compute(const MatrixType&,const MatrixType&,bool) has been called before.
253 GeneralizedEigenSolver& compute(const MatrixType& A, const MatrixType& B, bool computeEigenvectors = true);
281 RealQZ<MatrixType> m_realQZ;
285 template<typename MatrixType>
286 GeneralizedEigenSolver<MatrixType>&
287 GeneralizedEigenSolver<MatrixType>::compute(const MatrixType& A, const MatrixType& B, bool computeEigenvectors)
314 const MatrixType &mZ = m_realQZ.matrixZ();
315 const MatrixType &mS = m_realQZ.matrixS();
316 const MatrixType &mT = m_realQZ.matrixT();