HomeSort by relevance Sort by last modified time
    Searched refs:m_hess (Results 1 - 3 of 3) sorted by null

  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 346 HessenbergDecompositionMatrixHReturnType(const HessenbergDecomposition<MatrixType>& hess) : m_hess(hess) { }
356 result = m_hess.packedMatrix();
362 Index rows() const { return m_hess.packedMatrix().rows(); }
363 Index cols() const { return m_hess.packedMatrix().cols(); }
366 const HessenbergDecomposition<MatrixType>& m_hess; member in struct:Eigen::internal::HessenbergDecompositionMatrixHReturnType
ComplexSchur.h 97 m_hess(size),
115 m_hess(matrix.rows()),
247 HessenbergDecomposition<MatrixType> m_hess; member in class:Eigen::ComplexSchur
355 _this.m_hess.compute(matrix);
356 _this.m_matT = _this.m_hess.matrixH();
357 if(computeU) _this.m_matU = _this.m_hess.matrixQ();
368 // Note: m_hess is over RealScalar; m_matT and m_matU is over ComplexScalar
369 _this.m_hess.compute(matrix);
370 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>();
374 MatrixType Q = _this.m_hess.matrixQ();
    [all...]
RealSchur.h 87 m_hess(size),
107 m_hess(matrix.rows()),
228 HessenbergDecomposition<MatrixType> m_hess; member in class:Eigen::RealSchur
254 m_hess.compute(matrix);
257 computeFromHessenberg(m_hess.matrixH(), m_hess.matrixQ(), computeU);

Completed in 600 milliseconds