Home | History | Annotate | Download | only in Eigenvalues

Lines Matching full:_this

353   static void run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU)
355 _this.m_hess.compute(matrix);
356 _this.m_matT = _this.m_hess.matrixH();
357 if(computeU) _this.m_matU = _this.m_hess.matrixQ();
364 static void run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU)
369 _this.m_hess.compute(matrix);
370 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>();
374 MatrixType Q = _this.m_hess.matrixQ();
375 _this.m_matU = Q.template cast<ComplexScalar>();