Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:computeEigenvectors

134       * \param[in]  computeEigenvectors  If true, both the eigenvectors and the
146 EigenSolver(const MatrixType& matrix, bool computeEigenvectors = true)
155 compute(matrix, computeEigenvectors);
165 * \p computeEigenvectors was set to true (the default).
187 * \p computeEigenvectors was set to true (the default).
252 * \param[in] computeEigenvectors If true, both the eigenvectors and the
259 * \p computeEigenvectors is true, then the eigenvectors are also computed
268 * (where \f$ n \f$ is the size of the matrix) if \p computeEigenvectors
269 * is true, and \f$ 10n^3 \f$ if \p computeEigenvectors is false.
276 EigenSolver& compute(const MatrixType& matrix, bool computeEigenvectors = true);
351 EigenSolver<MatrixType>& EigenSolver<MatrixType>::compute(const MatrixType& matrix, bool computeEigenvectors)
356 m_realSchur.compute(matrix, computeEigenvectors);
360 if (computeEigenvectors)
384 if (computeEigenvectors)
389 m_eigenvectorsOk = computeEigenvectors;