E.V.E
v2022.09.01

Detailed Description

These functions allows performing exponential computations

Variables

constexpr callable_cbrt_ eve::cbrt = {}
 Callable object computing the cubic root. More...
 
constexpr callable_exp_ eve::exp = {}
 Callable object computing \(e^x\). More...
 
constexpr callable_exp10_ eve::exp10 = {}
 Callable object computing \(10^x\). More...
 
constexpr callable_exp2_ eve::exp2 = {}
 Callable object computing \(2^x\). More...
 
constexpr callable_expm1_ eve::expm1 = {}
 Callable object computing \(e^x-1\). More...
 
constexpr callable_expx2_ eve::expx2 = {}
 Callable object computing \(e^{\pm x^2}\). More...
 
constexpr callable_geommean_ eve::geommean = {}
 Callable object computing the geometric mean of the inputs. \( \left(\prod_{i = 1}^n x_i\right)^{1/n} \). More...
 
constexpr callable_hypot_ eve::hypot = {}
 Callable object computing the \(l_2\) norm of its inputs. More...
 
constexpr callable_lpnorm_ eve::lpnorm = {}
 Callable object computing the lpnorm operation \( \left(\sum_{i = 0}^n |x_i|^p\right)^{\frac1p} \). More...
 
constexpr callable_nthroot_ eve::nthroot = {}
 Callable object computing the nth root: \(x^{1/n}\). More...
 
constexpr callable_pow_ eve::pow = {}
 Callable object computing the pow operation \(x^y\). More...
 
constexpr callable_pow1p_ eve::pow1p = {}
 Callable object computing pow1p: \((1+x)^y\). More...
 
constexpr callable_pow_abs_ eve::pow_abs = {}
 Callable object computing the pow_abs function \(|x|^y\). More...
 
constexpr callable_powm1_ eve::powm1 = {}
 Callable object computing powm1: \(x^y-1\). More...
 
constexpr callable_significants_ eve::significants = {}
 Computes the rounding to n significants digits of the first input. More...