From bfaa7f4ffeb55f91278d70cd56659ce866e6ef88 Mon Sep 17 00:00:00 2001 From: Chen-Pang He Date: Mon, 27 Aug 2012 22:48:37 +0100 Subject: Add test for matrix power. Use Christoph Hertzberg's suggestion to use exponent laws. --- unsupported/test/matrix_square_root.cpp | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) (limited to 'unsupported/test/matrix_square_root.cpp') diff --git a/unsupported/test/matrix_square_root.cpp b/unsupported/test/matrix_square_root.cpp index 508619a7a..ea541e1ea 100644 --- a/unsupported/test/matrix_square_root.cpp +++ b/unsupported/test/matrix_square_root.cpp @@ -7,38 +7,7 @@ // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain one at http://mozilla.org/MPL/2.0/. -#include "main.h" -#include - -template ::Scalar>::IsComplex> -struct generateTestMatrix; - -// for real matrices, make sure none of the eigenvalues are negative -template -struct generateTestMatrix -{ - static void run(MatrixType& result, typename MatrixType::Index size) - { - MatrixType mat = MatrixType::Random(size, size); - EigenSolver es(mat); - typename EigenSolver::EigenvalueType eivals = es.eigenvalues(); - for (typename MatrixType::Index i = 0; i < size; ++i) { - if (eivals(i).imag() == 0 && eivals(i).real() < 0) - eivals(i) = -eivals(i); - } - result = (es.eigenvectors() * eivals.asDiagonal() * es.eigenvectors().inverse()).real(); - } -}; - -// for complex matrices, any matrix is fine -template -struct generateTestMatrix -{ - static void run(MatrixType& result, typename MatrixType::Index size) - { - result = MatrixType::Random(size, size); - } -}; +#include "matrix_functions.h" template void testMatrixSqrt(const MatrixType& m) -- cgit v1.2.3