OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jacobisvd
(Results
1 - 2
of
2
) sorted by null
/external/eigen/test/
jacobisvd.cpp
17
#define SVD_DEFAULT(M)
JacobiSVD
<M>
18
#define SVD_FOR_MIN_NORM(M)
JacobiSVD
<M,ColPivHouseholderQRPreconditioner>
21
// Check all variants of
JacobiSVD
23
void
jacobisvd
(const MatrixType& a = MatrixType(), bool pickrandom = true)
function
29
CALL_SUBTEST(( svd_test_all_computation_options<
JacobiSVD
<MatrixType, FullPivHouseholderQRPreconditioner> >(m, true) )); // check full only
30
CALL_SUBTEST(( svd_test_all_computation_options<
JacobiSVD
<MatrixType, ColPivHouseholderQRPreconditioner> >(m, false) ));
31
CALL_SUBTEST(( svd_test_all_computation_options<
JacobiSVD
<MatrixType, HouseholderQRPreconditioner> >(m, false) ));
33
CALL_SUBTEST(( svd_test_all_computation_options<
JacobiSVD
<MatrixType, NoQRPreconditioner> >(m, false) ));
38
svd_verify_assert<
JacobiSVD
<MatrixType> >(m);
53
JacobiSVD
<MatrixType, FullPivHouseholderQRPreconditioner> svd_fullqr
[
all
...]
boostmultiprec.cpp
51
#include "
jacobisvd
.cpp"
198
CALL_SUBTEST_9((
jacobisvd
(Mat(internal::random<int>(EIGEN_TEST_MAX_SIZE/4, EIGEN_TEST_MAX_SIZE), internal::random<int>(EIGEN_TEST_MAX_SIZE/4, EIGEN_TEST_MAX_SIZE/2))) ));
Completed in 104 milliseconds