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

◆ tan

auto eve::tan = functor<tan_t>
inlineconstexpr

Header file

#include <eve/module/math.hpp>

Callable Signatures

namespace eve
{
// Regular overload
constexpr auto tan(floating_value auto x) noexcept; // 1
// Lanes masking
constexpr auto tan[conditional_expr auto c](floating_value auto x) noexcept; // 2
constexpr auto tan[logical_value auto m](floating_value auto x) noexcept; // 2
// Semantic options
constexpr auto tan[quarter_circle](floating_value auto x) noexcept; // 3.a
constexpr auto tan[half_circle](floating_value auto x) noexcept; // 3.b
constexpr auto tan[full_circle](floating_value auto x) noexcept; // 3.c
}
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 tan
elementwise_callable object computing the tangent.
Definition tan.hpp:91
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. 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. These are optimized calls providing a balance between speed and range limitation.
    1. assumes that the inputs elements belong to \([-\pi/4,\pi/4]\) and return NaN outside.
    2. assumes that the inputs elements belong to \([-\pi/2,\pi/2]\) and return NaN outside.
    3. assumes that the inputs elements belong to \([-\pi,\pi]\) and return NaN outside.

External references

Example

// revision 1
#include <eve/module/math.hpp>
#include <iostream>
int main()
{
eve::wide wf = {0.0, 0.25, 0.5, 2.0, -0.0, -0.25, -0.5, -2.0};
wf *= eve::pi[eve::lower](eve::as(wf));
std::cout << "<- wf = " << wf << "\n";
std::cout << "-> tan(wf) = " << eve::tan(wf) << "\n";
std::cout << "-> tan[ignore_last(2)](wf)= " << eve::tan[eve::ignore_last(2)](wf) << "\n";
std::cout << "-> tan[wf != -2.0f](wf) = " << eve::tan[wf != -2.0f](wf) << "\n";
std::cout << "-> tan[quarter_circle](wf)= " << eve::tan[eve::quarter_circle](wf) << "\n";
std::cout << "-> tan[half_circle](wf) = " << eve::tan[eve::half_circle](wf) << "\n";
std::cout << "-> tan[full_circle](wf) = " << eve::tan[eve::full_circle](wf) << "\n";
}
constexpr auto pi
Callable object computing the constant .
Definition pi.hpp:77
Lightweight type-wrapper.
Definition as.hpp:29
Conditional expression ignoring the k last lanes from a eve::simd_value.
Definition conditional.hpp:332
Wrapper for SIMD registers.
Definition wide.hpp:70