Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "main.h"
00027 #include <Eigen/SVD>
00028
00029 template<typename MatrixType, typename JacobiScalar>
00030 void jacobi(const MatrixType& m = MatrixType())
00031 {
00032 typedef typename MatrixType::Scalar Scalar;
00033 typedef typename MatrixType::Index Index;
00034 Index rows = m.rows();
00035 Index cols = m.cols();
00036
00037 enum {
00038 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
00039 ColsAtCompileTime = MatrixType::ColsAtCompileTime
00040 };
00041
00042 typedef Matrix<JacobiScalar, 2, 1> JacobiVector;
00043
00044 const MatrixType a(MatrixType::Random(rows, cols));
00045
00046 JacobiVector v = JacobiVector::Random().normalized();
00047 JacobiScalar c = v.x(), s = v.y();
00048 JacobiRotation<JacobiScalar> rot(c, s);
00049
00050 {
00051 Index p = internal::random<Index>(0, rows-1);
00052 Index q;
00053 do {
00054 q = internal::random<Index>(0, rows-1);
00055 } while (q == p);
00056
00057 MatrixType b = a;
00058 b.applyOnTheLeft(p, q, rot);
00059 VERIFY_IS_APPROX(b.row(p), c * a.row(p) + internal::conj(s) * a.row(q));
00060 VERIFY_IS_APPROX(b.row(q), -s * a.row(p) + internal::conj(c) * a.row(q));
00061 }
00062
00063 {
00064 Index p = internal::random<Index>(0, cols-1);
00065 Index q;
00066 do {
00067 q = internal::random<Index>(0, cols-1);
00068 } while (q == p);
00069
00070 MatrixType b = a;
00071 b.applyOnTheRight(p, q, rot);
00072 VERIFY_IS_APPROX(b.col(p), c * a.col(p) - s * a.col(q));
00073 VERIFY_IS_APPROX(b.col(q), internal::conj(s) * a.col(p) + internal::conj(c) * a.col(q));
00074 }
00075 }
00076
00077 void test_jacobi()
00078 {
00079 for(int i = 0; i < g_repeat; i++) {
00080 CALL_SUBTEST_1(( jacobi<Matrix3f, float>() ));
00081 CALL_SUBTEST_2(( jacobi<Matrix4d, double>() ));
00082 CALL_SUBTEST_3(( jacobi<Matrix4cf, float>() ));
00083 CALL_SUBTEST_3(( jacobi<Matrix4cf, std::complex<float> >() ));
00084
00085 int r = internal::random<int>(2, 20),
00086 c = internal::random<int>(2, 20);
00087 CALL_SUBTEST_4(( jacobi<MatrixXf, float>(MatrixXf(r,c)) ));
00088 CALL_SUBTEST_5(( jacobi<MatrixXcd, double>(MatrixXcd(r,c)) ));
00089 CALL_SUBTEST_5(( jacobi<MatrixXcd, std::complex<double> >(MatrixXcd(r,c)) ));
00090
00091 CALL_SUBTEST_6(( jacobi<MatrixXcf, float>(MatrixXcf(r,c)) ));
00092 CALL_SUBTEST_6(( jacobi<MatrixXcf, std::complex<float> >(MatrixXcf(r,c)) ));
00093 (void) r;
00094 (void) c;
00095 }
00096 }