HomeSort by relevance Sort by last modified time
    Searched refs:ComputeThinV (Results 1 - 10 of 10) 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/unsupported/test/
svd_common.h 73 if(computationOptions & ComputeThinV)
123 svd_compare_to_full< MatrixType, SVD >(m, ComputeFullU|ComputeThinV, fullSvd);
124 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinV, fullSvd);
127 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinU|ComputeThinV, fullSvd);
128 svd_solve<MatrixType, SVD>(m, ComputeFullU | ComputeThinV);
130 svd_solve<MatrixType, SVD>(m, ComputeThinU | ComputeThinV);
134 SVD svd(m, ComputeThinU | ComputeThinV);
173 svd.compute(a, ComputeThinV);
181 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinV))
jacobisvd.cpp 85 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeFullU|ComputeThinV))
86 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
bdcsvd.cpp 98 if(computationOptions & ComputeThinV)
  /external/eigen/test/
jacobisvd.cpp 62 if(computationOptions & ComputeThinV)
193 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeFullU|ComputeThinV, fullSvd) ));
194 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinV, fullSvd) ));
197 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinU|ComputeThinV, fullSvd) ));
198 CALL_SUBTEST(( jacobisvd_solve<MatrixType, QRPreconditioner>(m, ComputeFullU | ComputeThinV) ));
200 CALL_SUBTEST(( jacobisvd_solve<MatrixType, QRPreconditioner>(m, ComputeThinU | ComputeThinV) ));
205 JacobiSVD<MatrixType, QRPreconditioner> svd(m, ComputeThinU | ComputeThinV);
275 svd.compute(a, ComputeThinV);
281 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeFullU|ComputeThinV))
282 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 333 ComputeThinV = 0x20,
  /external/eigen/unsupported/Eigen/src/SVD/
SVDBase.h 85 * #ComputeFullV, #ComputeThinV.
120 * the V matrix is p-by-p if you asked for #ComputeFullV, and is p-by-m if you asked for ComputeThinV.
214 m_computeThinV = (computationOptions & ComputeThinV) != 0;
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 589 Eigen::ComputeThinU | Eigen::ComputeThinV);
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 566 * #ComputeFullV, #ComputeThinV.
586 * #ComputeFullV, #ComputeThinV.
623 * the V matrix is p-by-p if you asked for #ComputeFullV, and is p-by-m if you asked for ComputeThinV.
788 m_computeThinV = (computationOptions & ComputeThinV) != 0;
    [all...]

Completed in 806 milliseconds