Processing math: 100%
E.V.E
v2023.02.15
 
All Classes Namespaces Functions Variables Typedefs Enumerations Friends Modules Pages Concepts
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: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:132
constexpr auto tanpi
elementwise_callable object computing the tangent from an input in multiples.
Definition: tanpi.hpp:78
EVE Main Namespace.
Definition: abi.hpp:18

Parameters

 * `x`: [floating value](@ref eve::floating_value).
 * `c`: [Conditional expression](@ref eve::conditional_expr) masking the operation.
 * `m`: [Logical value](@ref eve::logical_value) 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