These functions allows performing hyperbolic computations
Variables | |
constexpr auto | eve::cosh = functor<cosh_t> |
elementwise_callable object computing the hyperbolic cosine: \frac{e^x+e^{-x}}2. | |
constexpr auto | eve::coth = functor<coth_t> |
elementwise_callable object computing the hyperbolic cotangent: \frac{e^x+e^{-x}}{e^x-e^{-x}}. | |
constexpr auto | eve::csch = functor<csch_t> |
elementwise_callable object computing \frac2{e^x+e^{-x}}. | |
constexpr auto | eve::gd = functor<gd_t> |
elementwise_callable object computing the gudermanian gd: \int_0^\infty 1/\cosh x dx. | |
constexpr auto | eve::sech = functor<sech_t> |
elementwise_callable object computing \frac2{e^x-e^{-x}}. | |
constexpr auto | eve::sinh = functor<sinh_t> |
elementwise_callable object computing \frac{e^x-e^{-x}}2. | |
constexpr auto | eve::sinhc = functor<sinhc_t> |
elementwise_callable object computing \frac{e^x-e^{-x}}{2x}. | |
constexpr auto | eve::sinhcosh = functor<sinhcosh_t> |
Callable object performing the simultaneous computations of the hyperbolic sine and cosine. | |
constexpr auto | eve::tanh = functor<tanh_t> |
elementwise_callable object computing \frac{e^x-e^{-x}}{e^x+e^{-x}}. | |