Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:m_hess

97         m_hess(size),
114 m_hess(matrix.rows()),
204 HessenbergDecomposition<MatrixType> m_hess;
300 _this.m_hess.compute(matrix);
301 _this.m_matT = _this.m_hess.matrixH();
302 if(computeU) _this.m_matU = _this.m_hess.matrixQ();
314 // Note: m_hess is over RealScalar; m_matT and m_matU is over ComplexScalar
315 _this.m_hess.compute(matrix);
316 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>();
320 MatrixType Q = _this.m_hess.matrixQ();