HomeSort by relevance Sort by last modified time
    Searched refs:JacobiSVD (Results 1 - 20 of 20) sorted by null

  /external/eigen/failtest/
jacobisvd_int.cpp 13 JacobiSVD<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
  /external/eigen/unsupported/test/
jacobisvd.cpp 14 void jacobisvd_check_full(const MatrixType& m, const JacobiSVD<MatrixType, QRPreconditioner>& svd)
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);
53 void jacobisvd(const MatrixType& a = MatrixType(), bool pickrandom = true) function
68 svd_verify_assert<MatrixType, JacobiSVD< MatrixType > >(m)
    [all...]
bdcsvd.cpp 90 JacobiSVD<MatrixType> jacobi_svd(m);
  /external/eigen/doc/snippets/
JacobiSVD_basic.cpp 3 JacobiSVD<MatrixXf> svd(m, ComputeThinU | ComputeThinV);
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 26 *** JacobiSVD which by itself is only able to work on square matrices.
55 void allocate(const JacobiSVD<MatrixType, QRPreconditioner>&) {}
56 bool run(JacobiSVD<MatrixType, QRPreconditioner>&, const MatrixType&)
77 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd)
87 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
122 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd)
133 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
161 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd)
172 bool run(JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
214 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd
    [all...]
JacobiSVD_MKL.h 44 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/
JacobiSVD.h 26 *** JacobiSVD which by itself is only able to work on square matrices.
55 void allocate(const JacobiSVD<MatrixType, QRPreconditioner>&) {}
56 bool run(JacobiSVD<MatrixType, QRPreconditioner>&, const MatrixType&)
77 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd)
87 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
122 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd)
133 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
161 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd)
172 bool run(JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
214 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd
    [all...]
BDCSVD.h 34 * 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/
jacobisvd.cpp 18 void jacobisvd_check_full(const MatrixType& m, const JacobiSVD<MatrixType, QRPreconditioner>& svd)
46 const JacobiSVD<MatrixType, QRPreconditioner>& referenceSvd)
53 JacobiSVD<MatrixType, QRPreconditioner> svd(m, computationOptions);
84 JacobiSVD<MatrixType, QRPreconditioner> svd(m, computationOptions);
132 } while(m2.jacobiSvd().setThreshold(test_precision<Scalar>()).rank()!=rank && (++guard)<10);
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);
211 void jacobisvd(const MatrixType& a = MatrixType(), bool pickrandom = true
    [all...]
nomalloc.cpp 165 Eigen::JacobiSVD<Matrix> jSVD; jSVD.compute(A, ComputeFullU | ComputeFullV);
  /external/eigen/unsupported/bench/
bench_svd.cpp 55 JacobiSVD<MatrixType> jacobi_matrix(m);
86 JacobiSVD<MatrixType> jacobi_matrix(m, ComputeFullU|ComputeFullV);
  /external/eigen/Eigen/src/Geometry/
Umeyama.h 132 JacobiSVD<MatrixType> svd(sigma, ComputeFullU | ComputeFullV);
Hyperplane.h 109 JacobiSVD<Matrix<Scalar,2,3> > svd(m, ComputeFullV);
Transform.h     [all...]
Quaternion.h 591 JacobiSVD<Matrix<Scalar,2,3> > svd(m, ComputeFullV);
  /external/opencv3/modules/core/src/
lapack.cpp 571 static void JacobiSVD(float* At, size_t astep, float* W, float* Vt, size_t vstep, int m, int n, int n1=-1)
576 static void JacobiSVD(double* At, size_t astep, double* W, double* Vt, size_t vstep, int m, int n, int n1=-1)
    [all...]
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 224 template<typename MatrixType, int QRPreconditioner = ColPivHouseholderQRPreconditioner> class JacobiSVD;
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 621 JacobiSVD<LinearMatrixType> svd(linear(), ComputeFullU|ComputeFullV);
652 JacobiSVD<LinearMatrixType> svd(linear(), ComputeFullU|ComputeFullV);
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 588 Eigen::JacobiSVD<Matrix> svd(dense_jacobian,
  /external/eigen/Eigen/src/Core/
MatrixBase.h 379 JacobiSVD<PlainObject> jacobiSvd(unsigned int computationOptions = 0) const;

Completed in 781 milliseconds