aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/jacobisvd.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-09-03 02:53:51 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-09-03 02:53:51 -0400
commit7aa6fd362558718304937ddfd60232c9802d69be (patch)
tree94dad36bd2e82e25a83f71ea76ef8772f96c5da2 /test/jacobisvd.cpp
parent89557ac41d50196f17d48ada5137fcf435abe73a (diff)
big reorganization in JacobiSVD:
- R-SVD preconditioning now done with meta selectors to avoid compiling useless code - SVD options now honored, with options to hint "at least as many rows as cols" etc... - fix compilation in bad cases (rectangular and fixed-size) - the check for termination is now done on the fly, no more goto (should have done that earlier!)
Diffstat (limited to 'test/jacobisvd.cpp')
-rw-r--r--test/jacobisvd.cpp37
1 files changed, 18 insertions, 19 deletions
diff --git a/test/jacobisvd.cpp b/test/jacobisvd.cpp
index 8b4c7584e..5940b8497 100644
--- a/test/jacobisvd.cpp
+++ b/test/jacobisvd.cpp
@@ -27,7 +27,7 @@
#include <Eigen/SVD>
#include <Eigen/LU>
-template<typename MatrixType> void svd(const MatrixType& m, bool pickrandom = true)
+template<typename MatrixType, unsigned int Options> void svd(const MatrixType& m = MatrixType(), bool pickrandom = true)
{
int rows = m.rows();
int cols = m.cols();
@@ -48,7 +48,7 @@ template<typename MatrixType> void svd(const MatrixType& m, bool pickrandom = tr
if(pickrandom) a = MatrixType::Random(rows,cols);
else a = m;
- JacobiSVD<MatrixType> svd(a);
+ JacobiSVD<MatrixType,Options> svd(a);
MatrixType sigma = MatrixType::Zero(rows,cols);
sigma.diagonal() = svd.singularValues().template cast<Scalar>();
MatrixUType u = svd.matrixU();
@@ -80,28 +80,27 @@ void test_jacobisvd()
Matrix2cd m;
m << 0, 1,
0, 1;
- CALL_SUBTEST( svd(m, false) );
+ CALL_SUBTEST(( svd<Matrix2cd,0>(m, false) ));
m << 1, 0,
1, 0;
- CALL_SUBTEST( svd(m, false) );
+ CALL_SUBTEST(( svd<Matrix2cd,0>(m, false) ));
Matrix2d n;
n << 1, 1,
1, -1;
- CALL_SUBTEST( svd(n, false) );
- CALL_SUBTEST( svd(Matrix3f()) );
- CALL_SUBTEST( svd(Matrix4d()) );
- CALL_SUBTEST( svd(MatrixXf(50,50)) );
- CALL_SUBTEST( svd(MatrixXcd(14,7)) );
- CALL_SUBTEST( svd(MatrixXd(10,50)) );
-
- CALL_SUBTEST( svd(MatrixXcf(3,3)) );
- CALL_SUBTEST( svd(MatrixXd(30,30)) );
+ CALL_SUBTEST(( svd<Matrix2d,0>(n, false) ));
+ CALL_SUBTEST(( svd<Matrix3f,0>() ));
+ CALL_SUBTEST(( svd<Matrix4d,Square>() ));
+ CALL_SUBTEST(( svd<Matrix<float,3,5> , AtLeastAsManyColsAsRows>() ));
+ CALL_SUBTEST(( svd<Matrix<double,Dynamic,2> , AtLeastAsManyRowsAsCols>(Matrix<double,Dynamic,2>(10,2)) ));
+
+ CALL_SUBTEST(( svd<MatrixXf,Square>(MatrixXf(50,50)) ));
+ CALL_SUBTEST(( svd<MatrixXcd,AtLeastAsManyRowsAsCols>(MatrixXcd(14,7)) ));
}
- CALL_SUBTEST( svd(MatrixXf(300,200)) );
- CALL_SUBTEST( svd(MatrixXcd(100,150)) );
+ CALL_SUBTEST(( svd<MatrixXf,0>(MatrixXf(300,200)) ));
+ CALL_SUBTEST(( svd<MatrixXcd,AtLeastAsManyColsAsRows>(MatrixXcd(100,150)) ));
- CALL_SUBTEST( svd_verify_assert<Matrix3f>() );
- CALL_SUBTEST( svd_verify_assert<Matrix3d>() );
- CALL_SUBTEST( svd_verify_assert<MatrixXf>() );
- CALL_SUBTEST( svd_verify_assert<MatrixXd>() );
+ CALL_SUBTEST(( svd_verify_assert<Matrix3f>() ));
+ CALL_SUBTEST(( svd_verify_assert<Matrix3d>() ));
+ CALL_SUBTEST(( svd_verify_assert<MatrixXf>() ));
+ CALL_SUBTEST(( svd_verify_assert<MatrixXd>() ));
}