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

  /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)
86 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
120 void allocate(const JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd)
130 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
157 void allocate(const JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd)
167 bool run(JacobiSVD<MatrixType, ColPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix)
208 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/test/
jacobisvd.cpp 18 void jacobisvd_check_full(const MatrixType& m, const JacobiSVD<MatrixType, QRPreconditioner>& svd)
49 const JacobiSVD<MatrixType, QRPreconditioner>& referenceSvd)
56 JacobiSVD<MatrixType, QRPreconditioner> svd(m, computationOptions);
86 JacobiSVD<MatrixType, QRPreconditioner> svd(m, computationOptions);
97 JacobiSVD<MatrixType, QRPreconditioner> fullSvd(m, ComputeFullU|ComputeFullV);
123 JacobiSVD<MatrixType, QRPreconditioner> svd(m, ComputeThinU | ComputeThinV);
129 void jacobisvd(const MatrixType& a = MatrixType(), bool pickrandom = true) function
155 JacobiSVD<MatrixType> svd;
181 JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner> svd_fullqr;
200 VERIFY_IS_APPROX(m.jacobiSvd().singularValues(), RealVecType::Ones())
    [all...]
nomalloc.cpp 160 Eigen::JacobiSVD<Matrix> jSVD; jSVD.compute(A, ComputeFullU | ComputeFullV);
  /external/eigen/Eigen/src/Geometry/
Umeyama.h 132 JacobiSVD<MatrixType> svd(sigma, ComputeFullU | ComputeFullV);
Transform.h     [all...]
Quaternion.h 600 JacobiSVD<Matrix<Scalar,2,3> > svd(m, ComputeFullV);
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 225 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/eigen/Eigen/src/Core/
MatrixBase.h 382 JacobiSVD<PlainObject> jacobiSvd(unsigned int computationOptions = 0) const;

Completed in 277 milliseconds