Searched defs:matrixH (Results 1 - 3 of 3) sorted by path

/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur.h192 * \param[in] matrixH Matrix in Hessenberg form H
197 * This routine assumes that the matrix is already reduced in Hessenberg form matrixH
209 ComplexSchur& computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU=true);
338 ComplexSchur<MatrixType>& ComplexSchur<MatrixType>::computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU) argument
340 m_matT = matrixH;
356 _this.m_matT = _this.m_hess.matrixH();
370 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>();
H A DHessenbergDecomposition.h49 * computed, you can use the matrixH() and matrixQ() functions to construct
52 * The documentation for matrixH() contains an example of the typical use of
116 * \sa matrixH() for an example.
230 * \sa matrixH() for an example, class HouseholderSequence
260 MatrixHReturnType matrixH() const function in class:Eigen::HessenbergDecomposition
325 * \brief Expression type for return value of HessenbergDecomposition::matrixH()
334 * HessenbergDecomposition::matrixH(); there is probably no other use for this
H A DRealSchur.h171 * \param[in] matrixH Matrix in Hessenberg form H
176 * This routine assumes that the matrix is already reduced in Hessenberg form matrixH
188 RealSchur& computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU);
257 computeFromHessenberg(m_hess.matrixH(), m_hess.matrixQ(), computeU);
263 RealSchur<MatrixType>& RealSchur<MatrixType>::computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU) argument
265 m_matT = matrixH;
271 maxIters = m_maxIterationsPerRow * matrixH.rows();

Completed in 485 milliseconds