Armadillo  0.1.1
TheexpandableOS
Macros
math.h File Reference

Math. More...

Go to the source code of this file.

Macros

#define abs(n)   __builtin_abs ((n))
 
#define floor(f)   __builtin_floor ((f))
 
#define ceil(f)   __builtin_ceil ((f))
 
#define exp(x)   __builtin_exp ((x))
 
#define log10(x)   __builtin_log10 ((x))
 

Detailed Description

Math.

Macro Definition Documentation

◆ abs

#define abs (   n)    __builtin_abs ((n))

Returns the absolute value of the specified integer.

Parameters
nThe integer to convert.
Returns
The absolut value of n.

◆ ceil

#define ceil (   f)    __builtin_ceil ((f))

Returns the smallest integer value greater than or equal to x.

Parameters
fThe floating point number to round up.
Returns
The smallest integer value greater than or equal to x.

◆ exp

#define exp (   x)    __builtin_exp ((x))

Calculates the value of e raised to the power of x.

Parameters
xThe value to raise e by.
Returns
The value of e rasied to the power of x.

◆ floor

#define floor (   f)    __builtin_floor ((f))

Rounds a floating point number down.

Parameters
fThe floating point number to round down.
Returns
f rounded down to its largest integral value.

◆ log10

#define log10 (   x)    __builtin_log10 ((x))

Returns the common logarithm (base-10 logarithm) of x.

Parameters
xValue whose logarithm is calculated.
Returns
The common logarithm of x.