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

  /external/eigen/doc/examples/
TutorialLinAlgSVDSolve.cpp 14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
  /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...]
  /external/eigen/Eigen/src/Core/
MatrixBase.h 382 JacobiSVD<PlainObject> jacobiSvd(unsigned int computationOptions = 0) const;
  /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...]

Completed in 570 milliseconds