OpenKalman
transforms.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 
25 #ifndef OPENKALMAN_TRANSFORMS_HPP
26 #define OPENKALMAN_TRANSFORMS_HPP
27 
28 
29 #include "details/TransformBase.hpp"
30 
31 #include "IdentityTransform.hpp"
32 
33 #include "details/LinearTransformBase.hpp"
34 
35 #include "LinearTransform.hpp"
36 #include "LinearizedTransform.hpp"
37 
38 #include "details/ScaledSigmaPointsBase.hpp"
39 
43 
45 
46 #include "MonteCarloTransform.hpp"
47 
49 
50 
51 #endif //OPENKALMAN_TRANSFORMS_HPP
Definition of CubaturePoints.
Definitions for the unscented transform.
Definition of LinearizedTransform.
Definition of MonteCarloTransform.
Definitions for the spherical simplex unscented transform.
Definition of LinearTransform.
Definition of IdentityTransform.
Definition of RecursiveLeastSquaresTransform.
Definition of SamplePointsTransform and related aliases.