OpenKalman
values.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) 2023-2025 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 
19 #ifndef OPENKALMAN_VALUES_HPP
20 #define OPENKALMAN_VALUES_HPP
21 
26 namespace OpenKalman::values {}
27 
29 
30 #include "concepts/number.hpp"
31 #include "concepts/fixed.hpp"
32 #include "concepts/dynamic.hpp"
33 #include "concepts/value.hpp"
34 
35 #include "functions/to_number.hpp"
38 
39 #include "concepts/complex.hpp"
40 #include "concepts/integral.hpp"
41 #include "concepts/index.hpp"
42 #include "concepts/size.hpp"
43 #include "concepts/floating.hpp"
44 #include "concepts/not_complex.hpp"
45 
46 #include "classes/operation.hpp"
47 #include "classes/Fixed.hpp"
49 
50 #include "functions/cast_to.hpp"
52 
53 #include "math/real.hpp"
54 #include "math/imag.hpp"
57 
58 #include "math/isinf.hpp"
59 #include "math/isnan.hpp"
60 #include "math/conj.hpp"
61 #include "math/signbit.hpp"
62 #include "math/copysign.hpp"
63 #include "math/sqrt.hpp"
64 #include "math/hypot.hpp"
65 #include "math/abs.hpp"
66 #include "math/exp.hpp"
67 #include "math/expm1.hpp"
68 #include "math/sinh.hpp"
69 #include "math/cosh.hpp"
70 #include "math/tanh.hpp"
71 #include "math/sin.hpp"
72 #include "math/cos.hpp"
73 #include "math/tan.hpp"
74 #include "math/log.hpp"
75 #include "math/log1p.hpp"
76 #include "math/asinh.hpp"
77 #include "math/acosh.hpp"
78 #include "math/atanh.hpp"
79 #include "math/asin.hpp"
80 #include "math/acos.hpp"
81 #include "math/atan.hpp"
82 #include "math/atan2.hpp"
83 #include "math/pow.hpp"
84 
85 #endif //OPENKALMAN_VALUES_HPP
Definition for values::floating.
Definition for values::to_number.
Definition for values::fixed_number_of.
Definition for values::size.
Definition for value:number_type_of_t.
Definition for values::imag.
Definition for values::conj.
Definition for values::abs.
Definition: constant_coefficient.hpp:25
Definition for values::not_complex.
Definition for value:real_type_of_t.
Definition for values::integral.
Definition for ::fixed.
Definition for ::dynamic.
Definition for values::number.
Definition for values::real.
Definitions for value arithmetic.
Traits for arithmetic and complex scalar types.
Definition for ::complex.
Definition for ::value.