HomeSort by relevance Sort by last modified time
    Searched refs:ComputeThinV (Results 1 - 6 of 6) sorted by null

  /external/eigen/doc/examples/
TutorialLinAlgSVDSolve.cpp 14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
  /external/eigen/doc/snippets/
JacobiSVD_basic.cpp 3 JacobiSVD<MatrixXf> svd(m, ComputeThinU | ComputeThinV);
  /external/eigen/test/
jacobisvd.cpp 65 if(computationOptions & ComputeThinV)
111 jacobisvd_compare_to_full(m, ComputeFullU|ComputeThinV, fullSvd);
112 jacobisvd_compare_to_full(m, ComputeThinV, fullSvd);
115 jacobisvd_compare_to_full(m, ComputeThinU|ComputeThinV, fullSvd);
116 jacobisvd_solve<MatrixType, QRPreconditioner>(m, ComputeFullU | ComputeThinV);
118 jacobisvd_solve<MatrixType, QRPreconditioner>(m, ComputeThinU | ComputeThinV);
123 JacobiSVD<MatrixType, QRPreconditioner> svd(m, ComputeThinU | ComputeThinV);
176 svd.compute(a, ComputeThinV);
182 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeFullU|ComputeThinV))
183 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 326 ComputeThinV = 0x20,
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 778 Eigen::ComputeThinU | Eigen::ComputeThinV);
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 542 * #ComputeFullV, #ComputeThinV.
561 * #ComputeFullV, #ComputeThinV.
598 * the V matrix is p-by-p if you asked for #ComputeFullV, and is p-by-m if you asked for ComputeThinV.
699 m_computeThinV = (computationOptions & ComputeThinV) != 0;
    [all...]

Completed in 121 milliseconds