Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:compute

35   * Call the function compute() to compute the eigenvalues and eigenvectors of
59 * perform decompositions via compute(). This constructor
71 * intends to perform decompositions via compute(). The \p size
75 * \sa compute() for an example
90 * This constructor calls compute(const MatrixType&, const MatrixType&, int)
91 * to compute the eigenvalues and (if requested) the eigenvectors of the
105 * \sa compute(const MatrixType&, const MatrixType&, int)
111 compute(matA, matB, options);
139 * The implementation uses LLT to compute the Cholesky decomposition
154 GeneralizedSelfAdjointEigenSolver& compute(const MatrixType& matA, const MatrixType& matB,
164 compute(const MatrixType& matA, const MatrixType& matB, int options)
175 // Compute the cholesky decomposition of matB = L L' = U'U
184 // compute C = inv(L) A inv(L')
189 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly );
197 // compute C = L' A L
202 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly);
210 // compute C = L' A L
215 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly);