// This file is part of Eigen, a lightweight C++ template library // for linear algebra. Eigen itself is part of the KDE project. // // Copyright (C) 2009 Jitse Niesen // // Eigen is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 3 of the License, or (at your option) any later version. // // Alternatively, you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of // the License, or (at your option) any later version. // // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the // GNU General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License and a copy of the GNU General Public License along with // Eigen. If not, see . #include "main.h" #include #include double binom(int n, int k) { double res = 1; for (int i=0; i void randomTest(const MatrixType& m) { /* this test covers the following files: Inverse.h */ int rows = m.rows(); int cols = m.cols(); MatrixType m1(rows, cols), m2(rows, cols), m3(rows, cols), identity = MatrixType::Identity(rows, rows); for(int i = 0; i < g_repeat; i++) { m1 = MatrixType::Random(rows, cols); ei_matrix_exponential(m1, &m2); ei_matrix_exponential(-m1, &m3); VERIFY(identity.isApprox(m2 * m3, 1e-13)); } } void test_matrixExponential() { CALL_SUBTEST(test2dRotation()); CALL_SUBTEST(testPascal()); CALL_SUBTEST(randomTest(Matrix2d())); CALL_SUBTEST(randomTest(Matrix3d())); CALL_SUBTEST(randomTest(Matrix4d())); CALL_SUBTEST(randomTest(MatrixXd(8,8))); }