36#ifndef IMT_BASE_CORE_MATH_MATHS_H
37#define IMT_BASE_CORE_MATH_MATHS_H
105 template<
typename Type>
107 return left == right;
116 template<
typename Type>
128 template<
typename Type>
138 template<
typename Type>
139 static inline Type
sqrt(Type
const sqVal) {
149 template<
typename Type>
150 static inline Type
nsqrt(Type
const sqVal, Type n) {
157 template<
typename Type>
167 template<
typename Type>
168 static inline Type
exp(Type
const value) {
178 template<
typename Type>
179 static inline Type
ln(Type
const arg) {
188 template<
typename Type>
189 static inline Type
log10(Type
const arg) {
199 template<
typename Type>
219 template<
typename Type>
220 static inline Type
fabs(Type
const value) {
229 template<
typename Type>
230 static inline Type
abs(Type
const value) {
239 template<
typename Type>
240 static inline Type
sin(Type
const value) {
249 template<
typename Type>
250 static inline Type
cos(Type
const value) {
259 template<
typename Type>
260 static inline Type
tan(Type
const value) {
269 template<
typename Type>
270 static inline Type
arcos(Type
const value) {
279 template<
typename Type>
280 static inline Type
arsin(Type
const value) {
289 template<
typename Type>
290 static inline Type
artan(Type
const value) {
300 template<
typename Type>
301 static inline Type
artan2(Type
const y, Type
const x) {
310 template<
typename Type>
311 static inline Type
cosh(Type
const value) {
320 template<
typename Type>
321 static inline Type
sinh(Type
const value) {
330 template<
typename Type>
331 static inline Type
tanh(Type
const value) {
340 template<
typename Type>
341 static inline Type
arsinh(Type
const value) {
350 template<
typename Type>
351 static inline Type
arcosh(Type
const value) {
360 template<
typename Type>
361 static inline Type
artanh(Type
const value) {
371 template<
typename Type>
372 static inline Type
copysign(Type
const& x, Type
const& y) {
381 template<
typename Type>
382 static inline Type
erf(Type
const& x) {
391 template<
typename Type>
392 static inline Type
erfc(Type
const& x) {
407 template<
typename Type>
408 static inline Type
expm1(Type
const& x) {
421 template<
typename Type>
422 static inline Type
fdim(Type
const& x, Type
const& y) {
434 template<
typename Type>
435 static inline Type
floor(Type
const& x) {
452 template<
typename Type>
453 static inline Type
fmod(Type
const& numer, Type
const& denom) {
475 template<
typename Type>
497 template<
typename Type>
498 static inline Type
hypot(Type
const& x, Type
const& y) {
528 template<
typename Type>
543 template<
typename Type>
544 static inline bool isinf(Type
const& x) {
561 template<
typename Type>
562 static inline bool isnan(Type
const& x) {
589 static inline double nan(
char const* tagp) {
616 static inline float nanf(
char const* tagp) {
638 template<
typename Type>
653 template<
typename Type>
654 static inline Type
log1p(Type
const& x) {
666 template<
typename Type>
667 static inline Type
log2(Type
const& x) {
682 template<
typename Type>
683 static inline Type
logb(Type
const& x) {
701 template<
typename Type>
702 static inline Type
modf(Type
const& x, Type* intpart) {
728 template<
typename Type>
747 template<
typename Type>
748 static inline Type
nextafter(Type
const& x, Type
const& y) {
767 template<
typename Type>
768 static inline Type
remainder(Type
const& numer, Type
const& denom) {
789 template<
typename Type>
790 static inline Type
remquo(Type
const& numer, Type
const& denom,
int32_t* quot) {
810 template<
typename Type>
811 static inline Type
rint(Type
const& x) {
840 template<
typename Type>
841 static inline Type
scalbln(Type
const& x,
long int n) {
868 template<
typename Type>
883 template<
typename Type>
884 static inline Type
trunc(Type
const& x) {
Mathematical utility functions.
static Type sinh(Type const value)
Computes the sinh of arg (measured in radians)
static Type sqrt(Type const sqVal)
Find square root of a value.
static Type cos(Type const value)
Computes the cosine of arg (measured in radians)
static Type fmod(Type const &numer, Type const &denom)
Compute remainder of division.
static Type modf(Type const &x, int8_t const *tagp)
Generate quiet NaN.
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.
static Type nsqrt(Type const sqVal, Type n)
Find n-th root of a value.
static Type hypot(Type const &x, Type const &y)
Compute hypotenuse.
static Type copysign(Type const &x, Type const &y)
Returns a value with the magnitude of x and the sign of y.
static Type erfc(Type const &x)
Compute complementary error function.
static Type artanh(Type const value)
Computes the inverse hyperbolic tangent of arg.
static Type ln(Type const arg)
Computes the natural (base e) logarithm of arg.
static Type log1p(Type const &x)
Compute logarithm plus one.
static bool areEqualFloats(Type const left, Type const right)
Compares two floating point numbers.
static bool isinf(Type const &x)
Is infinity.
static Type log10(Type const arg)
Computes the common (base-10) logarithm of n.
static float64_t pow10(int32_t const exp)
Computes the value of 10 raised to the power exp.
static Type arsinh(Type const value)
Computes the arsinh of arg (measured in radians)
static Type floor(Type const &x)
Round down value.
static Type rint(Type const &x)
Round to integral value.
static Type scalbln(Type const &x, long int n)
Scale significand using floating-point base exponent (long)
static int32_t ilogb(Type const &x)
Integer binary logarithm.
static Type nsqrt(Type const sqVal, int32_t n)
static Type artan(Type const value)
Computes the arctan of arg.
static Type frexp(Type const &x, int32_t *exp)
Get significand and exponent.
static bool areEqualNumbers(Type const left, Type const right)
Compares two numbers.
static Type remainder(Type const &numer, Type const &denom)
Compute remainder (IEC 60559)
static Type fdim(Type const &x, Type const &y)
Positive difference.
static Type expm1(Type const &x)
Compute exponential minus one.
static Type modf(Type const &x, Type *intpart)
Break into fractional and integral parts.
static Type nextafter(Type const &x, Type const &y)
Next representable value.
static Type logb(Type const &x)
Compute floating-point base logarithm.
static double nan(char const *tagp)
Generate quiet NaN.
static Type cosh(Type const value)
Computes the cosh of arg (measured in radians)
static Type arcosh(Type const value)
Computes the acosh of arg (measured in radians)
static Type arsin(Type const value)
Computes the arsin of arg.
static Type trunc(Type const &x)
Truncate value.
static bool areEqualArrayFloats(Type const *left, Type const *right, size_t size)
Compares two floating point arrays.
static bool isnan(Type const &x)
Is Not-A-Number.
static Type log2(Type const &x)
Compute binary logarithm.
static Type scalbn(Type const &x, int32_t n)
Scale significand using floating-point base exponent.
static float nanf(char const *tagp)
Generate quiet NaN.
static Type arcos(Type const value)
Computes the arccos of arg.
static bool ldexp(Type const &x, int32_t exp)
Generate value from significand and exponent.
static Type pow(Type const base, int32_t const exp)
Computes the value of base (m) raised to the power exponent (n)
static Type exp(Type const value)
Computes e (Euler's number, 2.7182818...) raised to the given power arg.
static Type tan(Type const value)
Computes the tangens of arg (measured in radians)
static Type abs(Type const value)
Find absolute value of a given input.
static Type tanh(Type const value)
Computes the tanh of arg (measured in radians)
static Type sin(Type const value)
Computes the sine of arg (measured in radians)
static Type remquo(Type const &numer, Type const &denom, int32_t *quot)
Compute remainder and quotient.
static Type erf(Type const &x)
Compute error function.
static Type fabs(Type const value)
Find absolute value of a given input.
MATH_INLINE float64_t sinh(float64_t const value)
MATH_INLINE int32_t pow(int32_t const base, int32_t const exp)
MATH_INLINE float64_t sin(float64_t const value)
MATH_INLINE float64_t erfc(float64_t const value)
MATH_INLINE float64_t sqrt(float64_t const sqVal)
MATH_INLINE float64_t arsinh(float64_t const value)
MATH_INLINE float64_t hypot(float64_t const x, float64_t const y)
MATH_INLINE float64_t cosh(float64_t const value)
MATH_INLINE float64_t tan(float64_t const value)
MATH_INLINE float64_t fdim(float64_t x, float64_t y)
MATH_INLINE int32_t abs(int32_t const value)
MATH_INLINE float64_t fmod(float64_t numer, float64_t denom)
MATH_INLINE float64_t cos(float64_t const value)
MATH_INLINE float64_t log10(float64_t const arg)
MATH_INLINE float64_t log1p(float64_t const value)
MATH_INLINE float64_t artan(float64_t const value)
MATH_INLINE float64_t log2(float64_t const value)
MATH_INLINE bool areEqualNumbers(float32_t const left, float32_t const right)
MATH_INLINE float64_t exp(float64_t const value)
MATH_INLINE float64_t nan(char const *tagp)
MATH_INLINE float64_t tanh(float64_t const value)
MATH_INLINE bool isnan(float64_t const value)
MATH_INLINE float64_t ldexp(float64_t x, int32_t exp)
MATH_INLINE float64_t erf(float64_t const value)
MATH_INLINE float64_t rint(float64_t const value)
MATH_INLINE bool isinf(float64_t const value)
MATH_INLINE float32_t fabs(float32_t const value)
MATH_INLINE float64_t arcosh(float64_t const value)
MATH_INLINE float64_t trunc(float64_t x)
MATH_INLINE float64_t modf(float64_t x, float64_t *iptr)
MATH_INLINE float64_t arsin(float64_t const value)
MATH_INLINE float64_t copysign(float64_t x, float64_t y)
MATH_INLINE float64_t log(float64_t const arg)
MATH_INLINE float32_t nanf(char const *tagp)
MATH_INLINE float64_t scalbn(float64_t x, int32_t n)
MATH_INLINE float64_t expm1(float64_t const value)
MATH_INLINE int32_t ilogb(float64_t const value)
MATH_INLINE float64_t scalbln(float64_t x, long int n)
MATH_INLINE float64_t arcos(float64_t const value)
MATH_INLINE float64_t floor(float64_t const value)
MATH_INLINE float64_t logb(float64_t const value)
MATH_INLINE float64_t frexp(float64_t x, int32_t *exp)
MATH_INLINE float64_t remainder(float64_t numer, float64_t denom)
MATH_INLINE float64_t nextafter(float64_t x, float64_t y)
MATH_INLINE float64_t artan2(float64_t const y, float64_t const x)
MATH_INLINE float64_t remquo(float64_t numer, float64_t denom, int32_t *quot)
MATH_INLINE float64_t artanh(float64_t const value)
This is a application specific file which is used to configure Imt.Base.Core.Math.
double float64_t
64 Bits float variable (double)