HomeSort by relevance Sort by last modified time
    Searched refs:ComputeThinU (Results 1 - 11 of 11) 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/
svd_common.h 80 if(computationOptions & (ComputeFullU|ComputeThinU))
92 if(computationOptions & ComputeThinU) VERIFY_IS_APPROX(svd.matrixU(), referenceSvd.matrixU().leftCols(diagSize));
251 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU|ComputeFullV, fullSvd) ));
252 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU , fullSvd) ));
253 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU|ComputeThinV, fullSvd) ));
256 CALL_SUBTEST(( svd_least_square<SvdType>(m, ComputeThinU | ComputeFullV) ));
257 CALL_SUBTEST(( svd_least_square<SvdType>(m, ComputeThinU | ComputeThinV) ));
260 CALL_SUBTEST(( svd_min_norm(m, ComputeThinU | ComputeFullV) ));
261 CALL_SUBTEST(( svd_min_norm(m, ComputeThinU | ComputeThinV) ));
266 SvdType svd(m, ComputeThinU | ComputeThinV)
    [all...]
jacobisvd.cpp 55 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
56 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeFullV))
bdcsvd.cpp 60 if(computationOptions & ComputeThinU) VERIFY_IS_APPROX(bdc_svd.matrixU(), jacobi_svd.matrixU());
qr_colpivoting.cpp 57 JacobiSVD<MatrixType> svd(matrix, ComputeThinU | ComputeThinV);
  /external/eigen/lapack/
svd.cpp 52 : *jobz=='S' ? ComputeThinU|ComputeThinV
53 : *jobz=='O' ? ComputeThinU|ComputeThinV
121 int option = (*jobu=='A' ? ComputeFullU : *jobu=='S' || *jobu=='O' ? ComputeThinU : 0)
  /external/eigen/Eigen/src/Core/util/
Constants.h 385 ComputeThinU = 0x08,
  /external/eigen/Eigen/src/SVD/
SVDBase.h 77 * the U matrix is n-by-n if you asked for \link Eigen::ComputeFullU ComputeFullU \endlink, and is n-by-m if you asked for \link Eigen::ComputeThinU ComputeThinU \endlink.
293 m_computeThinU = (computationOptions & ComputeThinU) != 0;
JacobiSVD.h 540 * By default, none is computed. This is a bit-field, the possible bits are #ComputeFullU, #ComputeThinU,
555 * By default, none is computed. This is a bit-field, the possible bits are #ComputeFullU, #ComputeThinU,
631 m_computeThinU = (computationOptions & ComputeThinU) != 0;
    [all...]
  /external/eigen/bench/
dense_solvers.cpp 41 int svd_opt = ComputeThinU|ComputeThinV;

Completed in 262 milliseconds