| 97 | |
| 98 | template<typename MatrixType> |
| 99 | void testMatrixExponential(const MatrixType& A) |
| 100 | { |
| 101 | typedef typename internal::traits<MatrixType>::Scalar Scalar; |
| 102 | typedef typename NumTraits<Scalar>::Real RealScalar; |
| 103 | typedef std::complex<RealScalar> ComplexScalar; |
| 104 | |
| 105 | VERIFY_IS_APPROX(A.exp(), A.matrixFunction(internal::stem_function_exp<ComplexScalar>)); |
| 106 | } |
| 107 | |
| 108 | template<typename MatrixType> |
| 109 | void testMatrixLogarithm(const MatrixType& A) |
no test coverage detected