Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
Maths.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36#ifndef IMT_BASE_CORE_MATH_MATHS_H
37#define IMT_BASE_CORE_MATH_MATHS_H
38
85
86namespace imt {
87namespace base {
88namespace core {
89namespace math {
90
96
97public:
98
105 template<typename Type>
106 static inline bool areEqualNumbers(Type const left, Type const right) {
107 return left == right;
108 }
109
116 template<typename Type>
117 static inline bool areEqualFloats(Type const left, Type const right) {
118 return function::areEqualNumbers(left, right);
119 }
120
128 template<typename Type>
129 static inline bool areEqualArrayFloats(Type const* left, Type const* right, size_t size) {
130 return function::areEqualNumbers(left, right, size);
131 }
132
138 template<typename Type>
139 static inline Type sqrt(Type const sqVal) {
140 return function::sqrt(sqVal);
141 }
142
149 template<typename Type>
150 static inline Type nsqrt(Type const sqVal, Type n) {
151 return function::pow(sqVal, 1.0 / n);
152 }
153
157 template<typename Type>
158 static inline Type nsqrt(Type const sqVal, int32_t n) {
159 return function::pow(sqVal, 1 / n);
160 }
161
167 template<typename Type>
168 static inline Type exp(Type const value) {
169 return function::exp(value);
170 }
171
178 template<typename Type>
179 static inline Type ln(Type const arg) {
180 return function::log(arg);
181 }
182
188 template<typename Type>
189 static inline Type log10(Type const arg) {
190 return function::log10(arg);
191 }
192
199 template<typename Type>
200 static inline Type pow(Type const base, int32_t const exp) {
201 return function::pow(base, exp);
202 }
203
209 static inline float64_t pow10(int32_t const exp) {
210 constexpr float64_t decimalBase {10.0};
211 return function::pow(decimalBase, exp);
212 }
213
219 template<typename Type>
220 static inline Type fabs(Type const value) {
221 return function::fabs(value);
222 }
223
229 template<typename Type>
230 static inline Type abs(Type const value) {
231 return function::abs(value);
232 }
233
239 template<typename Type>
240 static inline Type sin(Type const value) {
241 return function::sin(value);
242 }
243
249 template<typename Type>
250 static inline Type cos(Type const value) {
251 return function::cos(value);
252 }
253
259 template<typename Type>
260 static inline Type tan(Type const value) {
261 return function::tan(value);
262 }
263
269 template<typename Type>
270 static inline Type arcos(Type const value) {
271 return function::arcos(value);
272 }
273
279 template<typename Type>
280 static inline Type arsin(Type const value) {
281 return function::arsin(value);
282 }
283
289 template<typename Type>
290 static inline Type artan(Type const value) {
291 return function::artan(value);
292 }
293
300 template<typename Type>
301 static inline Type artan2(Type const y, Type const x) {
302 return function::artan2(y, x);
303 }
304
310 template<typename Type>
311 static inline Type cosh(Type const value) {
312 return function::cosh(value);
313 }
314
320 template<typename Type>
321 static inline Type sinh(Type const value) {
322 return function::sinh(value);
323 }
324
330 template<typename Type>
331 static inline Type tanh(Type const value) {
332 return function::tanh(value);
333 }
334
340 template<typename Type>
341 static inline Type arsinh(Type const value) {
342 return function::arsinh(value);
343 }
344
350 template<typename Type>
351 static inline Type arcosh(Type const value) {
352 return function::arcosh(value);
353 }
354
360 template<typename Type>
361 static inline Type artanh(Type const value) {
362 return function::artanh(value);
363 }
364
371 template<typename Type>
372 static inline Type copysign(Type const& x, Type const& y) {
373 return function::copysign(x, y);
374 }
375
381 template<typename Type>
382 static inline Type erf(Type const& x) {
383 return function::erf(x);
384 }
385
391 template<typename Type>
392 static inline Type erfc(Type const& x) {
393 return function::erfc(x);
394 }
395
407 template<typename Type>
408 static inline Type expm1(Type const& x) {
409 return function::expm1(x);
410 }
411
421 template<typename Type>
422 static inline Type fdim(Type const& x, Type const& y) {
423 return function::fdim(x, y);
424 }
425
434 template<typename Type>
435 static inline Type floor(Type const& x) {
436 return function::floor(x);
437 }
438
452 template<typename Type>
453 static inline Type fmod(Type const& numer, Type const& denom) {
454 return function::fmod(numer, denom);
455 }
456
475 template<typename Type>
476 static inline Type frexp(Type const& x, int32_t* exp) {
477 return function::frexp(x, exp);
478 }
479
497 template<typename Type>
498 static inline Type hypot(Type const& x, Type const& y) {
499 return function::hypot(x, y);
500 }
501
528 template<typename Type>
529 static inline int32_t ilogb(Type const& x) {
530 return function::ilogb(x);
531 }
532
543 template<typename Type>
544 static inline bool isinf(Type const& x) {
545 return function::isinf(x);
546 }
547
561 template<typename Type>
562 static inline bool isnan(Type const& x) {
563 return function::isnan(x);
564 }
565
587 // AXIVION NEXT Routine AutosarC++19_03-A27.0.4: use of C-style string required to to defined interface of the nan function.
588 // AXIVION NEXT Routine AutosarC++19_03-A3.9.1: char is not for an integer but for a C-style string
589 static inline double nan(char const* tagp) {
590 return function::nan(tagp);
591 }
592
614 // AXIVION NEXT Routine AutosarC++19_03-A27.0.4: use of C-style string required to to defined interface of the nanf function.
615 // AXIVION NEXT Routine AutosarC++19_03-A3.9.1: char is not for an integer but for a C-style string
616 static inline float nanf(char const* tagp) {
617 return function::nanf(tagp);
618 }
619
638 template<typename Type>
639 static inline bool ldexp(Type const& x, int32_t exp) {
640 return function::ldexp(x, exp);
641 }
642
653 template<typename Type>
654 static inline Type log1p(Type const& x) {
655 return function::log1p(x);
656 }
657
666 template<typename Type>
667 static inline Type log2(Type const& x) {
668 return function::log2(x);
669 }
670
682 template<typename Type>
683 static inline Type logb(Type const& x) {
684 return function::logb(x);
685 }
686
701 template<typename Type>
702 static inline Type modf(Type const& x, Type* intpart) {
703 return function::modf(x, intpart);
704 }
705
727 // AXIVION NEXT Routine AutosarC++19_03-A8.4.7: tagp is an array and not a uint8 parameter
728 template<typename Type>
729 static inline Type modf(Type const& x, int8_t const* tagp) {
730 return function::modf(x, tagp);
731 }
732
747 template<typename Type>
748 static inline Type nextafter(Type const& x, Type const& y) {
749 return function::nextafter(x, y);
750 }
751
767 template<typename Type>
768 static inline Type remainder(Type const& numer, Type const& denom) {
769 return function::remainder(numer, denom);
770 }
771
789 template<typename Type>
790 static inline Type remquo(Type const& numer, Type const& denom, int32_t* quot) {
791 return function::remquo(numer, denom, quot);
792 }
793
810 template<typename Type>
811 static inline Type rint(Type const& x) {
812 return function::rint(x);
813 }
814
839 // AXIVION NEXT Routine AutosarC++19_03-A3.9.1: long int can not be replaced with a fixed size int (long int is different on a 32-bit or 64-bit system) and API is also defined by libc/STL
840 template<typename Type>
841 static inline Type scalbln(Type const& x, long int n) {
842 return function::scalbln(x, n);
843 }
844
868 template<typename Type>
869 static inline Type scalbn(Type const& x, int32_t n) {
870 return function::scalbn(x, n);
871 }
872
883 template<typename Type>
884 static inline Type trunc(Type const& x) {
885 return function::trunc(x);
886 }
887};
888
889} // namespace math
890} // namespace core
891} // namespace base
892} // namespace imt
893
894#endif // IMT_BASE_CORE_MATH_MATHS_H
Mathematical utility functions.
Definition Maths.h:95
static Type sinh(Type const value)
Computes the sinh of arg (measured in radians)
Definition Maths.h:321
static Type sqrt(Type const sqVal)
Find square root of a value.
Definition Maths.h:139
static Type cos(Type const value)
Computes the cosine of arg (measured in radians)
Definition Maths.h:250
static Type fmod(Type const &numer, Type const &denom)
Compute remainder of division.
Definition Maths.h:453
static Type modf(Type const &x, int8_t const *tagp)
Generate quiet NaN.
Definition Maths.h:729
static Type artan2(Type const y, Type const x)
Computes the arc tangent of y/x using the signs of arguments to determine the correct quadrant.
Definition Maths.h:301
static Type nsqrt(Type const sqVal, Type n)
Find n-th root of a value.
Definition Maths.h:150
static Type hypot(Type const &x, Type const &y)
Compute hypotenuse.
Definition Maths.h:498
static Type copysign(Type const &x, Type const &y)
Returns a value with the magnitude of x and the sign of y.
Definition Maths.h:372
static Type erfc(Type const &x)
Compute complementary error function.
Definition Maths.h:392
static Type artanh(Type const value)
Computes the inverse hyperbolic tangent of arg.
Definition Maths.h:361
static Type ln(Type const arg)
Computes the natural (base e) logarithm of arg.
Definition Maths.h:179
static Type log1p(Type const &x)
Compute logarithm plus one.
Definition Maths.h:654
static bool areEqualFloats(Type const left, Type const right)
Compares two floating point numbers.
Definition Maths.h:117
static bool isinf(Type const &x)
Is infinity.
Definition Maths.h:544
static Type log10(Type const arg)
Computes the common (base-10) logarithm of n.
Definition Maths.h:189
static float64_t pow10(int32_t const exp)
Computes the value of 10 raised to the power exp.
Definition Maths.h:209
static Type arsinh(Type const value)
Computes the arsinh of arg (measured in radians)
Definition Maths.h:341
static Type floor(Type const &x)
Round down value.
Definition Maths.h:435
static Type rint(Type const &x)
Round to integral value.
Definition Maths.h:811
static Type scalbln(Type const &x, long int n)
Scale significand using floating-point base exponent (long)
Definition Maths.h:841
static int32_t ilogb(Type const &x)
Integer binary logarithm.
Definition Maths.h:529
static Type nsqrt(Type const sqVal, int32_t n)
Definition Maths.h:158
static Type artan(Type const value)
Computes the arctan of arg.
Definition Maths.h:290
static Type frexp(Type const &x, int32_t *exp)
Get significand and exponent.
Definition Maths.h:476
static bool areEqualNumbers(Type const left, Type const right)
Compares two numbers.
Definition Maths.h:106
static Type remainder(Type const &numer, Type const &denom)
Compute remainder (IEC 60559)
Definition Maths.h:768
static Type fdim(Type const &x, Type const &y)
Positive difference.
Definition Maths.h:422
static Type expm1(Type const &x)
Compute exponential minus one.
Definition Maths.h:408
static Type modf(Type const &x, Type *intpart)
Break into fractional and integral parts.
Definition Maths.h:702
static Type nextafter(Type const &x, Type const &y)
Next representable value.
Definition Maths.h:748
static Type logb(Type const &x)
Compute floating-point base logarithm.
Definition Maths.h:683
static double nan(char const *tagp)
Generate quiet NaN.
Definition Maths.h:589
static Type cosh(Type const value)
Computes the cosh of arg (measured in radians)
Definition Maths.h:311
static Type arcosh(Type const value)
Computes the acosh of arg (measured in radians)
Definition Maths.h:351
static Type arsin(Type const value)
Computes the arsin of arg.
Definition Maths.h:280
static Type trunc(Type const &x)
Truncate value.
Definition Maths.h:884
static bool areEqualArrayFloats(Type const *left, Type const *right, size_t size)
Compares two floating point arrays.
Definition Maths.h:129
static bool isnan(Type const &x)
Is Not-A-Number.
Definition Maths.h:562
static Type log2(Type const &x)
Compute binary logarithm.
Definition Maths.h:667
static Type scalbn(Type const &x, int32_t n)
Scale significand using floating-point base exponent.
Definition Maths.h:869
static float nanf(char const *tagp)
Generate quiet NaN.
Definition Maths.h:616
static Type arcos(Type const value)
Computes the arccos of arg.
Definition Maths.h:270
static bool ldexp(Type const &x, int32_t exp)
Generate value from significand and exponent.
Definition Maths.h:639
static Type pow(Type const base, int32_t const exp)
Computes the value of base (m) raised to the power exponent (n)
Definition Maths.h:200
static Type exp(Type const value)
Computes e (Euler's number, 2.7182818...) raised to the given power arg.
Definition Maths.h:168
static Type tan(Type const value)
Computes the tangens of arg (measured in radians)
Definition Maths.h:260
static Type abs(Type const value)
Find absolute value of a given input.
Definition Maths.h:230
static Type tanh(Type const value)
Computes the tanh of arg (measured in radians)
Definition Maths.h:331
static Type sin(Type const value)
Computes the sine of arg (measured in radians)
Definition Maths.h:240
static Type remquo(Type const &numer, Type const &denom, int32_t *quot)
Compute remainder and quotient.
Definition Maths.h:790
static Type erf(Type const &x)
Compute error function.
Definition Maths.h:382
static Type fabs(Type const value)
Find absolute value of a given input.
Definition Maths.h:220
Base class for a static class that disables construction, copy, assignment and move of instances.
Definition StaticClass.h:48
MATH_INLINE float64_t sinh(float64_t const value)
Definition sinh.h:68
MATH_INLINE int32_t pow(int32_t const base, int32_t const exp)
Definition pow.h:87
MATH_INLINE float64_t sin(float64_t const value)
Definition sin.h:68
MATH_INLINE float64_t erfc(float64_t const value)
Definition erfc.h:68
MATH_INLINE float64_t sqrt(float64_t const sqVal)
Definition sqrt.h:68
MATH_INLINE float64_t arsinh(float64_t const value)
Definition arsinh.h:68
MATH_INLINE float64_t hypot(float64_t const x, float64_t const y)
Definition hypot.h:68
MATH_INLINE float64_t cosh(float64_t const value)
Definition cosh.h:68
MATH_INLINE float64_t tan(float64_t const value)
Definition tan.h:68
MATH_INLINE float64_t fdim(float64_t x, float64_t y)
Definition fdim.h:68
MATH_INLINE int32_t abs(int32_t const value)
Definition abs.h:100
MATH_INLINE float64_t fmod(float64_t numer, float64_t denom)
Definition fmod.h:68
MATH_INLINE float64_t cos(float64_t const value)
Definition cos.h:68
MATH_INLINE float64_t log10(float64_t const arg)
Definition log.h:87
MATH_INLINE float64_t log1p(float64_t const value)
Definition log1p.h:68
MATH_INLINE float64_t artan(float64_t const value)
Definition artan.h:68
MATH_INLINE float64_t log2(float64_t const value)
Definition log2.h:68
MATH_INLINE bool areEqualNumbers(float32_t const left, float32_t const right)
Definition compare.h:68
MATH_INLINE float64_t exp(float64_t const value)
Definition exp.h:68
MATH_INLINE float64_t nan(char const *tagp)
Definition nan.h:71
MATH_INLINE float64_t tanh(float64_t const value)
Definition tanh.h:68
MATH_INLINE bool isnan(float64_t const value)
Definition isnan.h:68
MATH_INLINE float64_t ldexp(float64_t x, int32_t exp)
Definition ldexp.h:68
MATH_INLINE float64_t erf(float64_t const value)
Definition erf.h:68
MATH_INLINE float64_t rint(float64_t const value)
Definition rint.h:68
MATH_INLINE bool isinf(float64_t const value)
Definition isinf.h:68
MATH_INLINE float32_t fabs(float32_t const value)
Definition abs.h:84
MATH_INLINE float64_t arcosh(float64_t const value)
Definition arcosh.h:68
MATH_INLINE float64_t trunc(float64_t x)
Definition trunc.h:68
MATH_INLINE float64_t modf(float64_t x, float64_t *iptr)
Definition modf.h:68
MATH_INLINE float64_t arsin(float64_t const value)
Definition arsin.h:68
MATH_INLINE float64_t copysign(float64_t x, float64_t y)
Definition copysign.h:68
MATH_INLINE float64_t log(float64_t const arg)
Definition log.h:71
MATH_INLINE float32_t nanf(char const *tagp)
Definition nan.h:79
MATH_INLINE float64_t scalbn(float64_t x, int32_t n)
Definition scalbn.h:68
MATH_INLINE float64_t expm1(float64_t const value)
Definition expm1.h:68
MATH_INLINE int32_t ilogb(float64_t const value)
Definition ilogb.h:68
MATH_INLINE float64_t scalbln(float64_t x, long int n)
Definition scalbln.h:70
MATH_INLINE float64_t arcos(float64_t const value)
Definition arcos.h:68
MATH_INLINE float64_t floor(float64_t const value)
Definition floor.h:68
MATH_INLINE float64_t logb(float64_t const value)
Definition logb.h:68
MATH_INLINE float64_t frexp(float64_t x, int32_t *exp)
Definition frexp.h:68
MATH_INLINE float64_t remainder(float64_t numer, float64_t denom)
Definition remainder.h:68
MATH_INLINE float64_t nextafter(float64_t x, float64_t y)
Definition nextafter.h:68
MATH_INLINE float64_t artan2(float64_t const y, float64_t const x)
Definition artan2.h:68
MATH_INLINE float64_t remquo(float64_t numer, float64_t denom, int32_t *quot)
Definition remquo.h:68
MATH_INLINE float64_t artanh(float64_t const value)
Definition artanh.h:68
This is a application specific file which is used to configure Imt.Base.Core.Math.
double float64_t
64 Bits float variable (double)
Definition stdfloat.h:63
__int8 int8_t
Definition stdint.h:58
__int32 int32_t
Definition stdint.h:60