E.V.E
v2023.02.15

Detailed Description

These functions allows performing logarithm computations

Variables

constexpr callable_log_ eve::log = {}
 Callable object computing the natural logarithm: \(\log x\). More...
 
constexpr callable_log10_ eve::log10 = {}
 Callable object computing the base 10 logarithm: \(\log_{10} x\). More...
 
constexpr callable_log1p_ eve::log1p = {}
 Callable object computing the natural logarithm of \(1+x\): \(\log(1+x)\). More...
 
constexpr callable_log2_ eve::log2 = {}
 Callable object computing the base 2 logarithm: \(\log_2 x\). More...
 
constexpr callable_log_abs_ eve::log_abs = {}
 Callable object computing the natural logarithm of the absolute value of the input. More...
 
constexpr callable_logspace_add_ eve::logspace_add = {}
 Callable object computing the logspace_add operation: \(\log\left(\sum_{i = 0}^n e^{x_i}\right)\). More...
 
constexpr callable_logspace_sub_ eve::logspace_sub = {}
 Callable object computing the logspace_sub operation: \(\log\left(e^{x_0}-\sum_{i = 1}^n e^{x_i}\right)\). More...