Home
last modified time | relevance | path

Searched refs:BDCSVD (Results 1 – 4 of 4) sorted by relevance

/external/eigen/unsupported/test/
Dbdcsvd.cpp19 void bdcsvd_check_full(const MatrixType& m, const BDCSVD<MatrixType>& svd) in bdcsvd_check_full()
21 svd_check_full< MatrixType, BDCSVD< MatrixType > >(m, svd); in bdcsvd_check_full()
28 const BDCSVD<MatrixType>& referenceSvd) in bdcsvd_compare_to_full()
30 svd_compare_to_full< MatrixType, BDCSVD< MatrixType > >(m, computationOptions, referenceSvd); in bdcsvd_compare_to_full()
37 svd_solve< MatrixType, BDCSVD< MatrixType > >(m, computationOptions); in bdcsvd_solve()
45 BDCSVD<MatrixType> fullSvd(m, ComputeFullU|ComputeFullV); in bdcsvd_test_all_computation_options()
46 svd_test_computation_options_1< MatrixType, BDCSVD< MatrixType > >(m, fullSvd); in bdcsvd_test_all_computation_options()
47 svd_test_computation_options_2< MatrixType, BDCSVD< MatrixType > >(m, fullSvd); in bdcsvd_test_all_computation_options()
64 svd_verify_assert< MatrixType, BDCSVD< MatrixType > >(m); in bdcsvd_verify_assert()
72 svd_inf_nan< MatrixType, BDCSVD< MatrixType > >(); in bdcsvd_inf_nan()
[all …]
/external/eigen/unsupported/Eigen/src/SVD/
DBDCSVD.h38 class BDCSVD : public SVDBase<_MatrixType>
78 BDCSVD() in BDCSVD() function
90 BDCSVD(Index rows, Index cols, unsigned int computationOptions = 0)
107 BDCSVD(const MatrixType& matrix, unsigned int computationOptions = 0)
114 ~BDCSVD() in ~BDCSVD()
157 inline const internal::solve_retval<BDCSVD, Rhs>
163 return internal::solve_retval<BDCSVD, Rhs>(*this, b.derived()); in solve()
218 void BDCSVD<MatrixType>::allocate(Index rows, Index cols, unsigned int computationOptions) in allocate()
255 BDCSVD<Matrix<int, Dynamic, Dynamic> >::compute(const MatrixType& matrix, unsigned int computationO… in compute()
272 BDCSVD<MatrixType>::compute(const MatrixType& matrix, unsigned int computationOptions) in compute()
[all …]
/external/eigen/unsupported/bench/
Dbench_svd.cpp48 BDCSVD<MatrixType> bdc_matrix(m); in bench_svd()
79 BDCSVD<MatrixType> bdc_matrix(m, ComputeFullU|ComputeFullV); in bench_svd()
/external/eigen/unsupported/Eigen/
DSVD27 #include "src/SVD/BDCSVD.h"