Hyperbolic functions¶
-
template<class T, class A>
inline batch<T, A> xsimd::sinh(batch<T, A> const &x) noexcept¶ Computes the hyperbolic sine of the batch
x
.- Parameters:
x – batch of floating point values.
- Returns:
the hyperbolic sine of
x
.
-
template<class T, class A>
inline batch<T, A> xsimd::cosh(batch<T, A> const &x) noexcept¶ computes the hyperbolic cosine of the batch
x
.- Parameters:
x – batch of floating point values.
- Returns:
the hyperbolic cosine of
x
.
-
template<class T, class A>
inline batch<T, A> xsimd::tanh(batch<T, A> const &x) noexcept¶ Computes the hyperbolic tangent of the batch
x
.- Parameters:
x – batch of floating point values.
- Returns:
the hyperbolic tangent of
x
.
-
template<class T, class A>
inline batch<T, A> xsimd::asinh(batch<T, A> const &x) noexcept¶ Computes the inverse hyperbolic sine of the batch
x
.- Parameters:
x – batch of floating point values.
- Returns:
the inverse hyperbolic sine of
x
.