Home | History | Annotate | Download | only in IterativeSolvers

Lines Matching defs:DenseMatrix

119     typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; 
211 ComplexVector schurValues(const ComplexSchur<DenseMatrix>& schurofH) const;
212 ComplexVector schurValues(const RealSchur<DenseMatrix>& schurofH) const;
215 mutable DenseMatrix m_V; // Krylov basis vectors
216 mutable DenseMatrix m_H; // Hessenberg matrix
217 mutable DenseMatrix m_Hes; // Initial hessenberg matrix wihout Givens rotations applied
219 mutable DenseMatrix m_U; // Vectors that form the basis of the invariant subspace
220 mutable DenseMatrix m_MU; // matrix operator applied to m_U (for next cycles)
221 mutable DenseMatrix m_T; /* T=U^T*M^{-1}*A*U */
222 mutable PartialPivLU<DenseMatrix> m_luT; // LU factorization of m_T
389 inline typename DGMRES<_MatrixType, _Preconditioner>::ComplexVector DGMRES<_MatrixType, _Preconditioner>::schurValues(const ComplexSchur<DenseMatrix>& schurofH) const
395 inline typename DGMRES<_MatrixType, _Preconditioner>::ComplexVector DGMRES<_MatrixType, _Preconditioner>::schurValues(const RealSchur<DenseMatrix>& schurofH) const
398 const DenseMatrix& T = schurofH.matrixT();
424 typename internal::conditional<NumTraits<Scalar>::IsComplex, ComplexSchur<DenseMatrix>, RealSchur<DenseMatrix> >::type schurofH;
426 DenseMatrix matrixQ(it,it);
452 DenseMatrix Sr(it, nbrEig);
460 DenseMatrix X;
474 DenseMatrix MX(m, nbrEig);