Home | History | Annotate | Download | only in SVD

Lines Matching defs:compute

90       m_qr.compute(matrix);
135 m_qr.compute(m_adjoint);
171 m_qr.compute(matrix);
224 m_qr.compute(m_adjoint);
267 m_qr.compute(matrix);
319 m_qr.compute(m_adjoint);
512 * perform decompositions via JacobiSVD::compute(const MatrixType&).
553 compute(matrix, computationOptions);
566 JacobiSVD& compute(const MatrixType& matrix, unsigned int computationOptions);
572 * This method uses the current \a computationOptions, as already passed to the constructor or to compute(const MatrixType&, unsigned int).
574 JacobiSVD& compute(const MatrixType& matrix)
576 return compute(matrix, m_computationOptions);
591 eigen_assert(computeU() && "This JacobiSVD decomposition didn't compute U. Did you ask for it?");
607 eigen_assert(computeV() && "This JacobiSVD decomposition didn't compute V. Did you ask for it?");
707 "JacobiSVD: can't compute thin U or thin V with the FullPivHouseholderQR preconditioner. "
726 JacobiSVD<MatrixType, QRPreconditioner>::compute(const MatrixType& matrix, unsigned int computationOptions)
796 /*** step 4. Sort singular values in descending order and compute the number of nonzero singular values ***/