Home
last modified time | relevance | path

Searched refs:matrixH (Results 1 – 7 of 7) sorted by relevance

/external/eigen/test/
Dhessenberg.cpp23 MatrixType H = hess.matrixH(); in hessenberg()
37 VERIFY_IS_EQUAL(cs1.matrixH().eval(), cs2.matrixH().eval()); in hessenberg()
44 VERIFY_RAISES_ASSERT( hessUninitialized.matrixH() ); in hessenberg()
/external/eigen/doc/snippets/
DHessenbergDecomposition_compute.cpp4 cout << "The matrix H in the decomposition of A is:" << endl << hd.matrixH() << endl;
6 cout << "The matrix H in the decomposition of 2A is:" << endl << hd.matrixH() << endl;
DHessenbergDecomposition_packedMatrix.cpp7 << endl << hessOfA.matrixH() << endl;
DHessenbergDecomposition_matrixH.cpp4 MatrixXf H = hessOfA.matrixH();
/external/eigen/Eigen/src/Eigenvalues/
DComplexSchur.h211 …ComplexSchur& computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, …
341 …>& ComplexSchur<MatrixType>::computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrix…
343 m_matT = matrixH;
359 _this.m_matT = _this.m_hess.matrixH();
373 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>();
DRealSchur.h190 …RealSchur& computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bo…
274 computeFromHessenberg(m_hess.matrixH(), m_hess.matrixQ(), computeU); in compute()
282 RealSchur<MatrixType>& RealSchur<MatrixType>::computeFromHessenberg(const HessMatrixType& matrixH, … in computeFromHessenberg() argument
286 m_matT = matrixH; in computeFromHessenberg()
292 maxIters = m_maxIterationsPerRow * matrixH.rows(); in computeFromHessenberg()
DHessenbergDecomposition.h262 MatrixHReturnType matrixH() const