MathToolbox.hpp
Go to the documentation of this file.
1 //
2 // MathToolbox.hpp
3 //
4 //
5 // Math functions and definitions.
6 //
8 
9 #if !defined(MATHTOOLBOX_HPP)
10 #define MATHTOOLBOX_HPP
11 
12 #include <math.h>
13 #include <cmath> // for abs()
14 #include "../BasicDatatypes.hpp"
15 
16 #if __cplusplus < 201703L
17 extern double hypot(double x, double y, double z);
18 #endif // C++17
19 
21 extern const double NaN_double;
22 
24 
29 inline bool fuzzyCompare (double a, double b)
30 {
31  return std::abs(a - b) < 1E-11;
32 }
33 
34 //
35 // Square
36 //
37 inline double sqr(double val)
38 {
39  return val * val;
40 }
41 
43 
48 inline bool fuzzyCompare(float a, float b)
49 {
50  return std::abs(a - b) < 1E-6f;
51 }
52 
53 
54 // Normalizes an angle in radians to the interval [-pi,+pi)
55 double normalizeRadians (double radians);
56 
58 
63 template<typename floatT>
64 inline bool isNaN (floatT x)
65 {
66  return (x != x);
67 }
68 
70 
74 template<typename IntT>
75 inline IntT round_to_int (float floatValue)
76 {
77 
78  // assert (std::numeric_limits<float>::round_style == std::round_toward_zero);
79  // static_cast<IntT>() rounds toward zero
80  return IntT (floatValue + (floatValue >= 0.0f ? + 0.5f : -0.5f));
81 }
82 
84 
88 template<typename IntT>
89 inline IntT round_to_int (double floatValue)
90 {
91 
92  // assert (std::numeric_limits<double>::round_style == std::round_toward_zero);
93  // static_cast<IntT>() rounds toward zero
94  return IntT (floatValue + (floatValue >= 0.0 ? + 0.5 : -0.5));
95 }
96 
97 
98 #endif // MATHTOOLBOX
IntT round_to_int(float floatValue)
Round to the closest integer.
Definition: MathToolbox.hpp:75
double normalizeRadians(double radians)
Definition: MathToolbox.cpp:34
double hypot(double x, double y, double z)
Definition: MathToolbox.cpp:21
const double NaN_double
Not-a-Number in double precision.
Definition: MathToolbox.cpp:13
bool fuzzyCompare(double a, double b)
Tests if two double values are nearly equal.
Definition: MathToolbox.hpp:29
double sqr(double val)
Definition: MathToolbox.hpp:37
bool isNaN(floatT x)
Checks if a floating point value is Not-a-Number (NaN)
Definition: MathToolbox.hpp:64


libsick_ldmrs
Author(s): SICK AG , Martin Günther , Jochen Sprickerhof
autogenerated on Wed Oct 26 2022 02:08:38