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

◆ tanpi

eve::tanpi = functor<tanpi_t>
inlineconstexpr

Header file

#include <eve/module/math.hpp>

Callable Signatures

namespace eve
{
// Regular overload
constexpr auto tanpi(floating_value auto x) noexcept; // 1
// Lanes masking
constexpr auto tanpi[conditional_expr auto c](floating_value auto x) noexcept; // 2
constexpr auto tanpi[logical_value auto m](floating_value auto x) noexcept; // 2
// Semantic options
constexpr auto tanpi[quarter_circle](floating_value auto x) noexcept; // 3
}
Specifies that a type is a Conditional Expression.
Definition: conditional.hpp:27
The concept floating_value<T> is satisfied if and only if T satisfies eve::value and the element type...
Definition: value.hpp:95
The concept logical_value<T> is satisfied if and only if T satisfies eve::value and the element type ...
Definition: value.hpp:107
constexpr auto tanpi
elementwise_callable object computing the tangent from an input in multiples.
Definition: tanpi.hpp:78
constexpr quarter_circle_type const quarter_circle
Higher-order Callable Object imbuing a limited range semantic onto other Callable Objects.
Definition: trigo_tags.hpp:159
EVE Main Namespace.
Definition: abi.hpp:18

Parameters

 * `x`: [floating value](@ref floating_value).
 * `c`: [Conditional expression](@ref conditional_expr) masking the operation.
 * `m`: [Logical value](@ref logical) masking the operation.

Return value

  1. Returns the elementwise tangent of the input expressed in \(\pi\) multiples. In particular:
    • If the element is \(\pm0\), \(\pm0\) is returned.
    • If the element is \(\pm\infty\), Nan is returned.
    • If the element is a Nan, NaN is returned.
  2. The operation is performed conditionnaly.
  3. Assumes that the inputs elements belong to \([-1/4,1/4]\) and return NaN outside.

Example