Searched refs:JacobiSVD (Results 1 - 17 of 17) sorted by relevance

/external/eigen/unsupported/test/
H A Djacobisvd.cpp14 void jacobisvd_check_full(const MatrixType& m, const JacobiSVD<MatrixType, QRPreconditioner>& svd) argument
16 svd_check_full<MatrixType, JacobiSVD<MatrixType, QRPreconditioner > >(m, svd);
22 const JacobiSVD<MatrixType, QRPreconditioner>& referenceSvd)
24 svd_compare_to_full<MatrixType, JacobiSVD<MatrixType, QRPreconditioner> >(m, computationOptions, referenceSvd);
31 svd_solve< MatrixType, JacobiSVD< MatrixType, QRPreconditioner > >(m, computationOptions);
43 JacobiSVD< MatrixType, QRPreconditioner > fullSvd(m, ComputeFullU|ComputeFullV);
44 svd_test_computation_options_1< MatrixType, JacobiSVD< MatrixType, QRPreconditioner > >(m, fullSvd);
48 svd_test_computation_options_2< MatrixType, JacobiSVD< MatrixType, QRPreconditioner > >(m, fullSvd);
68 svd_verify_assert<MatrixType, JacobiSVD< MatrixType > >(m);
84 JacobiSVD<MatrixTyp
20 jacobisvd_compare_to_full(const MatrixType& m, unsigned int computationOptions, const JacobiSVD<MatrixType, QRPreconditioner>& referenceSvd) argument
[all...]
H A Dbdcsvd.cpp90 JacobiSVD<MatrixType> jacobi_svd(m);
/external/eigen/doc/snippets/
H A DJacobiSVD_basic.cpp3 JacobiSVD<MatrixXf> svd(m, ComputeThinU | ComputeThinV);
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h26 *** JacobiSVD which by itself is only able to work on square matrices.
55 void allocate(const JacobiSVD<MatrixType, QRPreconditioner>&) {} argument
56 bool run(JacobiSVD<MatrixType, QRPreconditioner>&, const MatrixType&)
77 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd) argument
87 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
122 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd) argument
133 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
161 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd) argument
172 bool run(JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
214 void allocate(const JacobiSVD<MatrixTyp argument
261 allocate(const JacobiSVD<MatrixType, HouseholderQRPreconditioner>& svd) argument
313 allocate(const JacobiSVD<MatrixType, HouseholderQRPreconditioner>& svd) argument
500 template<typename _MatrixType, int QRPreconditioner> class JacobiSVD class in namespace:Eigen
536 JacobiSVD() function in class:Eigen::JacobiSVD
551 JacobiSVD(Index rows, Index cols, unsigned int computationOptions = 0) function in class:Eigen::JacobiSVD
571 JacobiSVD(const MatrixType& matrix, unsigned int computationOptions = 0) function in class:Eigen::JacobiSVD
[all...]
H A DJacobiSVD_MKL.h44 JacobiSVD<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic>, ColPivHouseholderQRPreconditioner>& \
45 JacobiSVD<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic>, ColPivHouseholderQRPreconditioner>::compute(const Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic>& matrix, unsigned int computationOptions) \
/external/eigen/unsupported/Eigen/src/SVD/
H A DJacobiSVD.h26 *** JacobiSVD which by itself is only able to work on square matrices.
55 void allocate(const JacobiSVD<MatrixType, QRPreconditioner>&) {} argument
56 bool run(JacobiSVD<MatrixType, QRPreconditioner>&, const MatrixType&)
77 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd) argument
87 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
122 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd) argument
133 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
161 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd) argument
172 bool run(JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
214 void allocate(const JacobiSVD<MatrixTyp argument
261 allocate(const JacobiSVD<MatrixType, HouseholderQRPreconditioner>& svd) argument
313 allocate(const JacobiSVD<MatrixType, HouseholderQRPreconditioner>& svd) argument
493 class JacobiSVD : public SVDBase<_MatrixType> class in namespace:Eigen
529 JacobiSVD() function in class:Eigen::JacobiSVD
540 JacobiSVD(Index rows, Index cols, unsigned int computationOptions = 0) function in class:Eigen::JacobiSVD
556 JacobiSVD(const MatrixType& matrix, unsigned int computationOptions = 0) function in class:Eigen::JacobiSVD
[all...]
H A DBDCSVD.h34 * We plan to have a very similar interface to JacobiSVD on this class.
380 JacobiSVD<MatrixXr> b(m_computed.block(firstCol, firstCol, n + 1, n),
485 // Third part of the algorithm, since the real third part of the algorithm is not implemeted we use a JacobiSVD
486 JacobiSVD<MatrixXr> res= JacobiSVD<MatrixXr>(m_computed.block(firstCol + shift, firstCol +shift, n + 1, n),
/external/eigen/test/
H A Djacobisvd.cpp18 void jacobisvd_check_full(const MatrixType& m, const JacobiSVD<MatrixType, QRPreconditioner>& svd) argument
46 const JacobiSVD<MatrixType, QRPreconditioner>& referenceSvd)
53 JacobiSVD<MatrixType, QRPreconditioner> svd(m, computationOptions);
84 JacobiSVD<MatrixType, QRPreconditioner> svd(m, computationOptions);
142 JacobiSVD<MatrixType2, ColPivHouseholderQRPreconditioner> svd2(m2, computationOptions);
155 JacobiSVD<MatrixType3, ColPivHouseholderQRPreconditioner> svd3(m3, computationOptions);
176 JacobiSVD<MatrixType, QRPreconditioner> fullSvd(m, ComputeFullU|ComputeFullV);
205 JacobiSVD<MatrixType, QRPreconditioner> svd(m, ComputeThinU | ComputeThinV);
254 JacobiSVD<MatrixType> svd;
280 JacobiSVD<MatrixTyp
44 jacobisvd_compare_to_full(const MatrixType& m, unsigned int computationOptions, const JacobiSVD<MatrixType, QRPreconditioner>& referenceSvd) argument
[all...]
H A Dnomalloc.cpp165 Eigen::JacobiSVD<Matrix> jSVD; jSVD.compute(A, ComputeFullU | ComputeFullV);
/external/eigen/unsupported/bench/
H A Dbench_svd.cpp55 JacobiSVD<MatrixType> jacobi_matrix(m);
86 JacobiSVD<MatrixType> jacobi_matrix(m, ComputeFullU|ComputeFullV);
/external/eigen/Eigen/src/Geometry/
H A DUmeyama.h132 JacobiSVD<MatrixType> svd(sigma, ComputeFullU | ComputeFullV);
H A DTransform.h1021 JacobiSVD<LinearMatrixType> svd(linear(), ComputeFullU | ComputeFullV);
1050 JacobiSVD<LinearMatrixType> svd(linear(), ComputeFullU | ComputeFullV);
H A DQuaternion.h591 JacobiSVD<Matrix<Scalar,2,3> > svd(m, ComputeFullV);
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DTransform.h621 JacobiSVD<LinearMatrixType> svd(linear(), ComputeFullU|ComputeFullV);
652 JacobiSVD<LinearMatrixType> svd(linear(), ComputeFullU|ComputeFullV);
/external/ceres-solver/internal/ceres/
H A Dcovariance_impl.cc588 Eigen::JacobiSVD<Matrix> svd(dense_jacobian,
/external/eigen/Eigen/src/Core/
H A DMatrixBase.h385 JacobiSVD<PlainObject> jacobiSvd(unsigned int computationOptions = 0) const;
/external/eigen/Eigen/src/Core/util/
H A DForwardDeclarations.h224 template<typename MatrixType, int QRPreconditioner = ColPivHouseholderQRPreconditioner> class JacobiSVD;

Completed in 343 milliseconds