3#ifndef pRC_CORE_COMPLEX_FUNCTIONS_EXP_H
4#define pRC_CORE_COMPLEX_FUNCTIONS_EXP_H
11 static inline constexpr auto exp(
T const &a)
13 auto const rho =
exp(a.real());
14 auto const theta = a.imag();
16 return polar(rho, theta);
Definition cholesky.hpp:10
static constexpr auto polar(TA const &rho, TB const &theta)
Definition polar.hpp:11
static constexpr auto exp(T const &a)
Definition exp.hpp:11