Lines Matching defs:compute
36 * A, and thus the real Schur decomposition is used in EigenSolver to compute
39 * Call the function compute() to compute the real Schur decomposition of a
77 * perform decompositions via compute(). The \p size parameter is only
81 * \sa compute() for an example.
98 * This constructor calls compute() to compute the Schur decomposition.
113 compute(matrix.derived(), computeU);
121 * member function compute(const MatrixType&, bool) has been called before
122 * to compute the Schur decomposition of a matrix, and \p computeU was set
139 * member function compute(const MatrixType&, bool) has been called before
140 * to compute the Schur decomposition of a matrix.
167 * \sa compute(const MatrixType&, bool, Index)
170 RealSchur& compute(const EigenBase<InputType>& matrix, bool computeU = true);
187 * \sa compute(const MatrixType&, bool)
249 RealSchur<MatrixType>& RealSchur<MatrixType>::compute(const EigenBase<InputType>& matrix, bool computeU)
271 m_hess.compute(matrix.derived()/scale);
458 /** \internal Compute index im at which Francis QR step starts and the first Householder vector. */