xtensor
Loading...
Searching...
No Matches
Hyperbolic functions

Functions

template<class E >
auto xt::sinh (E &&e) noexcept -> detail::xfunction_type_t< math::sinh_fun, E >
 Hyperbolic sine function.
 
template<class E >
auto xt::cosh (E &&e) noexcept -> detail::xfunction_type_t< math::cosh_fun, E >
 Hyperbolic cosine function.
 
template<class E >
auto xt::tanh (E &&e) noexcept -> detail::xfunction_type_t< math::tanh_fun, E >
 Hyperbolic tangent function.
 
template<class E >
auto xt::asinh (E &&e) noexcept -> detail::xfunction_type_t< math::asinh_fun, E >
 Inverse hyperbolic sine function.
 
template<class E >
auto xt::acosh (E &&e) noexcept -> detail::xfunction_type_t< math::acosh_fun, E >
 Inverse hyperbolic cosine function.
 
template<class E >
auto xt::atanh (E &&e) noexcept -> detail::xfunction_type_t< math::atanh_fun, E >
 Inverse hyperbolic tangent function.
 

Detailed Description

Function Documentation

◆ acosh()

template<class E >
auto xt::acosh ( E && e) -> detail::xfunction_type_t<math::acosh_fun, E>
inlinenoexcept

Inverse hyperbolic cosine function.

Returns an xfunction for the element-wise inverse hyperbolic cosine of e.

Parameters
ean xexpression
Returns
an xfunction

Definition at line 1471 of file xmath.hpp.

◆ asinh()

template<class E >
auto xt::asinh ( E && e) -> detail::xfunction_type_t<math::asinh_fun, E>
inlinenoexcept

Inverse hyperbolic sine function.

Returns an xfunction for the element-wise inverse hyperbolic sine of e.

Parameters
ean xexpression
Returns
an xfunction

Definition at line 1456 of file xmath.hpp.

◆ atanh()

template<class E >
auto xt::atanh ( E && e) -> detail::xfunction_type_t<math::atanh_fun, E>
inlinenoexcept

Inverse hyperbolic tangent function.

Returns an xfunction for the element-wise inverse hyperbolic tangent of e.

Parameters
ean xexpression
Returns
an xfunction

Definition at line 1486 of file xmath.hpp.

◆ cosh()

template<class E >
auto xt::cosh ( E && e) -> detail::xfunction_type_t<math::cosh_fun, E>
inlinenoexcept

Hyperbolic cosine function.

Returns an xfunction for the element-wise hyperbolic cosine of e.

Parameters
ean xexpression
Returns
an xfunction

Definition at line 1426 of file xmath.hpp.

◆ sinh()

template<class E >
auto xt::sinh ( E && e) -> detail::xfunction_type_t<math::sinh_fun, E>
inlinenoexcept

Hyperbolic sine function.

Returns an xfunction for the element-wise hyperbolic sine of e.

Parameters
ean xexpression
Returns
an xfunction

Definition at line 1411 of file xmath.hpp.

◆ tanh()

template<class E >
auto xt::tanh ( E && e) -> detail::xfunction_type_t<math::tanh_fun, E>
inlinenoexcept

Hyperbolic tangent function.

Returns an xfunction for the element-wise hyperbolic tangent of e.

Parameters
ean xexpression
Returns
an xfunction

Definition at line 1441 of file xmath.hpp.