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}}\). | |
|
inlineconstexpr |
elementwise_callable object computing the hyperbolic cosine: \(\frac{e^x+e^{-x}}2\).
Parameters
Return value
|
inlineconstexpr |
elementwise_callable object computing the hyperbolic cotangent: \(\frac{e^x+e^{-x}}{e^x-e^{-x}}\).
Parameters
Return value
|
inlineconstexpr |
elementwise_callable object computing \(\frac2{e^x+e^{-x}}\).
Parameters
Return value
|
inlineconstexpr |
elementwise_callable object computing the gudermanian gd: \(\int_0^\infty 1/\cosh x dx\).
Defined in Header
Parameters
Return value
|
inlineconstexpr |
elementwise_callable object computing \(\frac2{e^x-e^{-x}}\).
Parameters
* `x`: [floating value](@ref eve::floating_value). * `c`: [Conditional expression](@ref eve::conditional_expr) masking the operation. * `m`: [Logical value](@ref eve::logical_value) masking the operation.
Return value
|
inlineconstexpr |
elementwise_callable object computing \(\frac{e^x-e^{-x}}2\).
Parameters
* `x`: [floating value](@ref eve::floating_value). * `c`: [Conditional expression](@ref eve::conditional_expr) masking the operation. * `m`: [Logical value](@ref eve::logical_value) masking the operation.
Return value
|
inlineconstexpr |
elementwise_callable object computing \(\frac{e^x-e^{-x}}{2x}\).
Parameters
x: floating value.
Return value
|
inlineconstexpr |
Callable object performing the simultaneous computations of the hyperbolic sine and cosine.
Parameters
* `x`: [floating value](@ref eve::floating_value). * `c`: [Conditional expression](@ref eve::conditional_expr) masking the operation. * `m`: [Logical value](@ref eve::logical_value) masking the operation.
}
Return value
1 .The computation returns a tuple-like whose elements are sinh(x) and cosh(x)
|
inlineconstexpr |
elementwise_callable object computing \(\frac{e^x-e^{-x}}{e^x+e^{-x}}\).
Parameters
Return value