Lines Matching defs:HessenbergDecomposition

30   * \class HessenbergDecomposition
47 * HessenbergDecomposition(const MatrixType&) constructor which computes the
57 template<typename _MatrixType> class HessenbergDecomposition
100 HessenbergDecomposition(Index size = Size==Dynamic ? 2 : Size)
118 HessenbergDecomposition(const MatrixType& matrix)
144 * This method reuses of the allocated data in the HessenbergDecomposition
150 HessenbergDecomposition& compute(const MatrixType& matrix)
168 * \pre Either the constructor HessenbergDecomposition(const MatrixType&)
179 eigen_assert(m_isInitialized && "HessenbergDecomposition is not initialized.");
188 * \pre Either the constructor HessenbergDecomposition(const MatrixType&)
214 eigen_assert(m_isInitialized && "HessenbergDecomposition is not initialized.");
222 * \pre Either the constructor HessenbergDecomposition(const MatrixType&)
234 eigen_assert(m_isInitialized && "HessenbergDecomposition is not initialized.");
244 * \pre Either the constructor HessenbergDecomposition(const MatrixType&)
262 eigen_assert(m_isInitialized && "HessenbergDecomposition is not initialized.");
292 void HessenbergDecomposition<MatrixType>::_compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp)
325 * \brief Expression type for return value of HessenbergDecomposition::matrixH()
331 * HessenbergDecomposition class until the it is assigned or evaluated for
334 * HessenbergDecomposition::matrixH(); there is probably no other use for this
346 HessenbergDecompositionMatrixHReturnType(const HessenbergDecomposition<MatrixType>& hess) : m_hess(hess) { }
366 const HessenbergDecomposition<MatrixType>& m_hess;