Searched refs:matrixH (Results 1 – 8 of 8) sorted by relevance
/external/eigen/test/ |
D | hessenberg.cpp | 23 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/test/eigen2/ |
D | eigen2_qr.cpp | 39 VERIFY_IS_APPROX(b, hess.matrixQ() * hess.matrixH() * hess.matrixQ().adjoint()); in qr() 40 VERIFY_IS_APPROX(tridiag.matrixT(), hess.matrixH()); in qr() 43 VERIFY_IS_APPROX(b, hess.matrixQ() * hess.matrixH() * hess.matrixQ().adjoint()); in qr()
|
/external/eigen/doc/snippets/ |
D | HessenbergDecomposition_compute.cpp | 4 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;
|
D | HessenbergDecomposition_packedMatrix.cpp | 7 << endl << hessOfA.matrixH() << endl;
|
D | HessenbergDecomposition_matrixH.cpp | 4 MatrixXf H = hessOfA.matrixH();
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | ComplexSchur.h | 209 …ComplexSchur& computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, … 338 …>& ComplexSchur<MatrixType>::computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrix… 340 m_matT = matrixH; 356 _this.m_matT = _this.m_hess.matrixH(); 370 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>();
|
D | RealSchur.h | 188 …RealSchur& computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bo… 257 computeFromHessenberg(m_hess.matrixH(), m_hess.matrixQ(), computeU); in compute() 263 RealSchur<MatrixType>& RealSchur<MatrixType>::computeFromHessenberg(const HessMatrixType& matrixH, … in computeFromHessenberg() argument 265 m_matT = matrixH; in computeFromHessenberg() 271 maxIters = m_maxIterationsPerRow * matrixH.rows(); in computeFromHessenberg()
|
D | HessenbergDecomposition.h | 260 MatrixHReturnType matrixH() const
|