HomeSort by relevance Sort by last modified time
    Searched refs:ComputeThinU (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 69 if(computationOptions & ComputeThinU)
125 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinU|ComputeFullV, fullSvd);
126 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinU , fullSvd);
127 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinU|ComputeThinV, fullSvd);
129 svd_solve<MatrixType, SVD>(m, ComputeThinU | ComputeFullV);
130 svd_solve<MatrixType, SVD>(m, ComputeThinU | ComputeThinV);
134 SVD svd(m, ComputeThinU | ComputeThinV);
169 svd.compute(a, ComputeThinU);
180 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinU))
jacobisvd.cpp 86 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
87 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeFullV))
bdcsvd.cpp 94 if(computationOptions & ComputeThinU)
  /external/eigen/test/
jacobisvd.cpp 58 if(computationOptions & ComputeThinU)
195 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinU|ComputeFullV, fullSvd) ));
196 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinU , fullSvd) ));
197 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinU|ComputeThinV, fullSvd) ));
199 CALL_SUBTEST(( jacobisvd_solve<MatrixType, QRPreconditioner>(m, ComputeThinU | ComputeFullV) ));
200 CALL_SUBTEST(( jacobisvd_solve<MatrixType, QRPreconditioner>(m, ComputeThinU | ComputeThinV) ));
205 JacobiSVD<MatrixType, QRPreconditioner> svd(m, ComputeThinU | ComputeThinV);
270 svd.compute(a, ComputeThinU);
282 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
283 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeFullV)
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 329 ComputeThinU = 0x08,
  /external/eigen/unsupported/Eigen/src/SVD/
SVDBase.h 84 * By default, none is computed. This is a bit-field, the possible bits are #ComputeFullU, #ComputeThinU,
104 * the U matrix is n-by-n if you asked for #ComputeFullU, and is n-by-m if you asked for #ComputeThinU.
212 m_computeThinU = (computationOptions & ComputeThinU) != 0;
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 589 Eigen::ComputeThinU | Eigen::ComputeThinV);
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 565 * By default, none is computed. This is a bit-field, the possible bits are #ComputeFullU, #ComputeThinU,
585 * By default, none is computed. This is a bit-field, the possible bits are #ComputeFullU, #ComputeThinU,
607 * the U matrix is n-by-n if you asked for #ComputeFullU, and is n-by-m if you asked for #ComputeThinU.
786 m_computeThinU = (computationOptions & ComputeThinU) != 0;
    [all...]

Completed in 423 milliseconds