Skip to content

Hyperbolic functions


cosh function

template <typename T1, KFR_ENABLE_IF(is_numeric<T1>)>
flt_type<T1> cosh(const T1 &x)

Returns the hyperbolic cosine of the x


coshsinh function

template <typename T1, KFR_ENABLE_IF(is_numeric<T1>)>
flt_type<T1> coshsinh(const T1 &x)

Returns the hyperbolic cosine of the even elements of the x and the hyperbolic sine of the odd elements of the x


coth function

template <typename T1, KFR_ENABLE_IF(is_numeric<T1>)>
flt_type<T1> coth(const T1 &x)

Returns the hyperbolic cotangent of the x


sinh function

template <typename T1, KFR_ENABLE_IF(is_numeric<T1>)>
flt_type<T1> sinh(const T1 &x)

Returns the hyperbolic sine of the x


sinhcosh function

template <typename T1, KFR_ENABLE_IF(is_numeric<T1>)>
flt_type<T1> sinhcosh(const T1 &x)

Returns the hyperbolic sine of the even elements of the x and the hyperbolic cosine of the odd elements of the x


tanh function

template <typename T1, KFR_ENABLE_IF(is_numeric<T1>)>
flt_type<T1> tanh(const T1 &x)

Returns the hyperbolic tangent of the x


Auto-generated from sources, Revision 5191a48df06ea47104ca67db19fa82058d09c20a, https://github.com/kfrlib/kfr/blob/5191a48df06ea47104ca67db19fa82058d09c20a/include/kfr/