E.V.E
v2023.02.15
Loading...
Searching...
No Matches

◆ sinhc

auto eve::sinhc = functor<sinhc_t>
inlineconstexpr

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
}
Specifies that a type is a Conditional Expression.
Definition conditional.hpp:28
The concept floating_value<T> is satisfied if and only if T satisfies eve::value and the element type...
Definition value.hpp:116
The concept logical_value<T> is satisfied if and only if T satisfies eve::value and the element type ...
Definition value.hpp:134
constexpr auto sinhc
elementwise_callable object computing .
Definition sinhc.hpp:72
EVE Main Namespace.
Definition abi.hpp:19

Parameters

x: floating value.

Return value

  1. 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.
  2. The operation is performed conditionnaly.

@groupheader{Example} @godbolt{doc/math/sinhc.cpp}