Home
last modified time | relevance | path

Searched refs:m_hess (Results 1 – 3 of 3) sorted by relevance

/external/eigen/Eigen/src/Eigenvalues/
DComplexSchur.h97 m_hess(size), in m_matT()
116 m_hess(matrix.rows()),
249 HessenbergDecomposition<MatrixType> m_hess; variable
358 _this.m_hess.compute(matrix);
359 _this.m_matT = _this.m_hess.matrixH();
360 if(computeU) _this.m_matU = _this.m_hess.matrixQ();
372 _this.m_hess.compute(matrix);
373 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>();
377 MatrixType Q = _this.m_hess.matrixQ();
DHessenbergDecomposition.h347 …gDecompositionMatrixHReturnType(const HessenbergDecomposition<MatrixType>& hess) : m_hess(hess) { }
357 result = m_hess.packedMatrix();
363 Index rows() const { return m_hess.packedMatrix().rows(); }
364 Index cols() const { return m_hess.packedMatrix().cols(); }
367 const HessenbergDecomposition<MatrixType>& m_hess;
DRealSchur.h87 m_hess(size), in m_matT()
108 m_hess(matrix.rows()),
230 HessenbergDecomposition<MatrixType> m_hess; variable
271 m_hess.compute(matrix.derived()/scale); in compute()
274 computeFromHessenberg(m_hess.matrixH(), m_hess.matrixQ(), computeU); in compute()