Searched refs:SVD (Results 1 - 21 of 21) sorted by relevance

/external/eigen/unsupported/test/
H A Dsvd_common.h21 #include <unsupported/Eigen/SVD>
26 template<typename MatrixType, typename SVD>
27 void svd_check_full(const MatrixType& m, const SVD& svd)
54 template<typename MatrixType, typename SVD>
57 const SVD& referenceSvd)
64 SVD svd(m, computationOptions);
79 template<typename MatrixType, typename SVD>
96 SVD svd(m, computationOptions);
105 template<typename MatrixType, typename SVD>
106 void svd_test_computation_options_1(const MatrixType& m, const SVD
[all...]
/external/eigen/test/eigen2/
H A Deigen2_svd.cpp11 #include <Eigen/SVD>
16 SVD.h
33 SVD<MatrixType> svd(a);
49 SVD<MatrixType> svd(a);
57 SVD<MatrixType> svd(a);
83 SVD<MatrixXf> s;
H A Deigen2_geometry.cpp13 #include <Eigen/SVD>
H A Deigen2_geometry_with_eigen2_prefix.cpp15 #include <Eigen/SVD>
/external/eigen/doc/examples/
H A Dfunction_taking_ref.cpp2 #include <Eigen/SVD>
/external/eigen/test/
H A Dupperbidiagonalization.cpp11 #include <Eigen/SVD>
H A Djacobi.cpp12 #include <Eigen/SVD>
H A Dgeo_eulerangles.cpp13 #include <Eigen/SVD>
H A Dgeo_orthomethods.cpp13 #include <Eigen/SVD>
H A Dumeyama.cpp16 #include <Eigen/SVD> // required for SVD
H A Dnomalloc.cpp31 #include <Eigen/SVD>
164 // SVD module
H A Dgeo_quaternion.cpp14 #include <Eigen/SVD>
H A Djacobisvd.cpp15 #include <Eigen/SVD>
141 // now check with SVD
H A Dgeo_transformations.cpp13 #include <Eigen/SVD>
/external/eigen/Eigen/src/Eigen2Support/
H A DSVD.h18 * \class SVD
20 * \brief Standard SVD decomposition of a matrix and associated features
22 * \param MatrixType the type of the matrix of which we are computing the SVD decomposition
24 * This class performs a standard SVD decomposition of a real matrix A of size \c M x \c N
28 * \sa MatrixBase::SVD()
30 template<typename MatrixType> class SVD class in namespace:Eigen
51 SVD() {} // a user who relied on compiler-generated default compiler reported problems with MSVC in 2.0.7 function in class:Eigen::SVD
53 SVD(const MatrixType& matrix) function in class:Eigen::SVD
69 SVD& sort();
89 /** Computes / recomputes the SVD decompositio
[all...]
/external/eigen/unsupported/bench/
H A Dbench_svd.cpp13 // Bench to compare the efficiency of SVD algorithms
17 #include <unsupported/Eigen/SVD>
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h22 /*** QR preconditioners (R-SVD)
24 *** Their role is to reduce the problem of computing the SVD to the case of a square matrix.
25 *** This approach, known as R-SVD, is an optimization for rectangular-enough matrices, and is a requirement for
352 /*** 2x2 SVD implementation
354 *** JacobiSVD consists in performing a series of 2x2 SVD subproblems
360 typedef JacobiSVD<MatrixType, QRPreconditioner> SVD; typedef in struct:Eigen::internal::svd_precondition_2x2_block_to_be_real
361 typedef typename SVD::Index Index;
362 static void run(typename SVD::WorkMatrixType&, SVD&, Index, Index) {} argument
368 typedef JacobiSVD<MatrixType, QRPreconditioner> SVD; typedef in struct:Eigen::internal::svd_precondition_2x2_block_to_be_real
[all...]
/external/eigen/unsupported/Eigen/src/SVD/
H A DJacobiSVD.h22 /*** QR preconditioners (R-SVD)
24 *** Their role is to reduce the problem of computing the SVD to the case of a square matrix.
25 *** This approach, known as R-SVD, is an optimization for rectangular-enough matrices, and is a requirement for
352 /*** 2x2 SVD implementation
354 *** JacobiSVD consists in performing a series of 2x2 SVD subproblems
360 typedef JacobiSVD<MatrixType, QRPreconditioner> SVD; typedef in struct:Eigen::internal::svd_precondition_2x2_block_to_be_real
361 typedef typename SVD::Index Index;
362 static void run(typename SVD::WorkMatrixType&, SVD&, Index, Index) {} argument
368 typedef JacobiSVD<MatrixType, QRPreconditioner> SVD; typedef in struct:Eigen::internal::svd_precondition_2x2_block_to_be_real
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1584 SmallVector<ASanStackVariableDescription, 16> SVD; local
1585 SVD.reserve(AllocaVec.size());
1590 SVD.push_back(D);
1596 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1650 for (const auto &Desc : SVD) {
/external/eigen/Eigen/src/Core/
H A DMatrixBase.h383 /////////// SVD module ///////////
388 SVD<PlainObject> svd() const;
/external/eigen/Eigen/src/Core/util/
H A DForwardDeclarations.h291 template<typename MatrixType> class SVD;

Completed in 678 milliseconds