Searched refs:ComputeThinU (Results 1 - 10 of 10) sorted by relevance

/external/eigen/doc/examples/
H A DTutorialLinAlgSVDSolve.cpp14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
/external/eigen/doc/snippets/
H A DJacobiSVD_basic.cpp3 JacobiSVD<MatrixXf> svd(m, ComputeThinU | ComputeThinV);
/external/eigen/unsupported/test/
H A Dsvd_common.h69 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))
H A Djacobisvd.cpp86 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
87 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeFullV))
H A Dbdcsvd.cpp94 if(computationOptions & ComputeThinU)
/external/eigen/test/
H A Djacobisvd.cpp58 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|ComputeFull
[all...]
/external/eigen/Eigen/src/Core/util/
H A DConstants.h329 ComputeThinU = 0x08, enumerator in enum:Eigen::DecompositionOptions
/external/eigen/unsupported/Eigen/src/SVD/
H A DSVDBase.h84 * 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/
H A Dcovariance_impl.cc589 Eigen::ComputeThinU | Eigen::ComputeThinV);
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h565 * 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;

Completed in 202 milliseconds