numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Definition of exp function. More...
#include <type_traits>
#include "num_collect/constants/exp.h"
#include "num_collect/constants/impl/expm1_maclaurin.h"
#include "num_collect/constants/one.h"
#include "num_collect/constants/zero.h"
Go to the source code of this file.
Namespaces | |
namespace | num_collect |
Namespace of num_collect source codes. | |
namespace | num_collect::constants |
Namespace of constexpr variables and functions. | |
Functions | |
template<typename T , typename = std::enable_if_t<std::is_floating_point_v<T>>> | |
constexpr auto | num_collect::constants::expm1 (T x) -> T |
Calculate exponential function minus one \( e^x - 1 \). | |
Definition of exp function.
Definition in file expm1.h.