OpenKalman
matrices.hpp
Go to the documentation of this file.
1 /* This file is part of OpenKalman, a header-only C++ library for
2  * Kalman filters and other recursive filters.
3  *
4  * Copyright (c) 2020-2021 Christopher Lee Ogden <ogden@gatech.edu>
5  *
6  * This Source Code Form is subject to the terms of the Mozilla Public
7  * License, v. 2.0. If a copy of the MPL was not distributed with this
8  * file, You can obtain one at https://mozilla.org/MPL/2.0/.
9  */
10 
22 #ifndef OPENKALMAN_MATRICES_HPP
23 #define OPENKALMAN_MATRICES_HPP
24 
25 #include "adapters/Mean.hpp"
26 #include "adapters/EuclideanMean.hpp"
27 #include "adapters/Matrix.hpp"
28 #include "adapters/details/typed-matrix-overloads.hpp"
29 #include "adapters/details/typed-matrix-arithmetic.hpp"
30 
31 #include "adapters/details/to_covariance_nestable.hpp"
32 #include "adapters/details/CovarianceBase1.hpp"
33 #include "adapters/details/CovarianceBase2.hpp"
34 #include "adapters/details/CovarianceBase3Impl.hpp"
35 #include "adapters/details/CovarianceBase3-1.hpp"
36 #include "adapters/details/CovarianceBase3-2.hpp"
37 #include "adapters/details/CovarianceBase4.hpp"
38 #include "adapters/details/CovarianceImpl.hpp"
39 #include "adapters/Covariance.hpp"
40 #include "adapters/SquareRootCovariance.hpp"
41 #include "adapters/details/covariance-overloads.hpp"
42 #include "adapters/details/covariance-arithmetic.hpp"
43 
44 #endif //OPENKALMAN_MATRICES_HPP
Definitions relating to Mean.