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

  /external/eigen/unsupported/test/
bdcsvd.cpp 19 void bdcsvd_check_full(const MatrixType& m, const BDCSVD<MatrixType>& svd)
21 svd_check_full< MatrixType, BDCSVD< MatrixType > >(m, svd);
28 const BDCSVD<MatrixType>& referenceSvd)
30 svd_compare_to_full< MatrixType, BDCSVD< MatrixType > >(m, computationOptions, referenceSvd);
37 svd_solve< MatrixType, BDCSVD< MatrixType > >(m, computationOptions);
45 BDCSVD<MatrixType> fullSvd(m, ComputeFullU|ComputeFullV);
46 svd_test_computation_options_1< MatrixType, BDCSVD< MatrixType > >(m, fullSvd);
47 svd_test_computation_options_2< MatrixType, BDCSVD< MatrixType > >(m, fullSvd);
53 void bdcsvd(const MatrixType& a = MatrixType(), bool pickrandom = true) function
57 } // end template bdcsvd
    [all...]
  /external/eigen/unsupported/Eigen/src/SVD/
BDCSVD.h 29 * \class BDCSVD
38 class BDCSVD : public SVDBase<_MatrixType>
76 * perform decompositions via BDCSVD::compute(const MatrixType&).
78 BDCSVD()
88 * \sa BDCSVD()
90 BDCSVD(Index rows, Index cols, unsigned int computationOptions = 0)
107 BDCSVD(const MatrixType& matrix, unsigned int computationOptions = 0)
114 ~BDCSVD()
142 eigen_assert(s>3 && "BDCSVD the size of the algo switch has to be greater than 4");
157 inline const internal::solve_retval<BDCSVD, Rhs
    [all...]
  /external/eigen/unsupported/bench/
bench_svd.cpp 48 BDCSVD<MatrixType> bdc_matrix(m);
79 BDCSVD<MatrixType> bdc_matrix(m, ComputeFullU|ComputeFullV);

Completed in 724 milliseconds