Searched refs:ComputeThinV (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.h73 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))
H A Djacobisvd.cpp85 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeFullU|ComputeThinV))
86 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
H A Dbdcsvd.cpp98 if(computationOptions & ComputeThinV)
/external/eigen/test/
H A Djacobisvd.cpp62 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/
H A DConstants.h333 ComputeThinV = 0x20, enumerator in enum:Eigen::DecompositionOptions
/external/eigen/unsupported/Eigen/src/SVD/
H A DSVDBase.h85 * #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/
H A Dcovariance_impl.cc589 Eigen::ComputeThinU | Eigen::ComputeThinV);
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h566 * #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;

Completed in 483 milliseconds