Eigen-unsupported  3.4.90 (git rev 9589cc4e7fd8e4538bedef80dd36c7738977a8be)
 
Loading...
Searching...
No Matches
MatrixFunctions
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2009 Jitse Niesen <jitse@maths.leeds.ac.uk>
5// Copyright (C) 2012 Chen-Pang He <jdh8@ms63.hinet.net>
6//
7// This Source Code Form is subject to the terms of the Mozilla
8// Public License v. 2.0. If a copy of the MPL was not distributed
9// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10
11#ifndef EIGEN_MATRIX_FUNCTIONS_MODULE_H
12#define EIGEN_MATRIX_FUNCTIONS_MODULE_H
13
14#include <cfloat>
15#include <list>
16
17#include "../../Eigen/Core"
18#include "../../Eigen/LU"
19#include "../../Eigen/Eigenvalues"
20
55
56#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
57
58// IWYU pragma: begin_exports
59#include "src/MatrixFunctions/MatrixExponential.h"
60#include "src/MatrixFunctions/MatrixFunction.h"
61#include "src/MatrixFunctions/MatrixSquareRoot.h"
62#include "src/MatrixFunctions/MatrixLogarithm.h"
63#include "src/MatrixFunctions/MatrixPower.h"
64// IWYU pragma: end_exports
65
66#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
67
503
504#endif // EIGEN_MATRIX_FUNCTIONS_MODULE_H