E.V.E
v2023.02.15
Loading...
Searching...
No Matches
◆
sinhc
auto eve::sinhc =
functor
<sinhc_t>
inline
constexpr
Header file
#include <eve/module/math.hpp>
Callable Signatures
namespace
eve
{
// Regular overload
constexpr
auto
sinhc
(
floating_value
auto
x)
noexcept
;
// 1
// Lanes masking
constexpr
auto
sinhc
[
conditional_expr
auto
c](
floating_value
auto
x)
noexcept
;
// 2
constexpr
auto
sinhc
[
logical_value
auto
m](
floating_value
auto
x)
noexcept
;
// 2
}
eve::conditional_expr
Specifies that a type is a Conditional Expression.
Definition
conditional.hpp:28
eve::floating_value
The concept floating_value<T> is satisfied if and only if T satisfies eve::value and the element type...
Definition
value.hpp:116
eve::logical_value
The concept logical_value<T> is satisfied if and only if T satisfies eve::value and the element type ...
Definition
value.hpp:134
eve::sinhc
constexpr auto sinhc
elementwise_callable object computing .
Definition
sinhc.hpp:72
eve
EVE Main Namespace.
Definition
abi.hpp:19
Parameters
x
:
floating value
.
Return value
Returns the
elementwise
hyperbolic sine of the input divided by the input. In particular:
If the element is \(\pm0\), \(1\) is returned.
If the element is \(\pm\infty\), \(\pm\infty\) is returned.
If the element is a
Nan
,
NaN
is returned.
The operation is performed conditionnaly
.
@groupheader{Example} @godbolt{doc/math/sinhc.cpp}
eve