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

◆ sincos

auto eve::sincos = functor<sincos_t>
inlineconstexpr

Header file

#include <eve/module/math.hpp>

Callable Signatures

namespace eve
{
// Regular overload
constexpr auto sincos(floating_value auto x) noexcept; // 1
// Lanes masking
constexpr auto sincos[conditional_expr auto c](floating_value auto x) noexcept; // 2
constexpr auto sincos[logical_value auto m](floating_value auto x) noexcept; // 2
// Semantic options
constexpr auto sincos[quarter_circle](floating_value auto x) noexcept; // 3.a
constexpr auto sincos[half_circle](floating_value auto x) noexcept; // 3.b
constexpr auto sincos[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 sincos
elementwise_callable object computing the simultaneous computation of sine an cosine.
Definition sincos.hpp:86
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 .The computation returns a tuple-like whose elements are sin(x) and cos(x)

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

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 << "-> sincos(wf) = " << eve::sincos(wf) << "\n";
std::cout << "-> sincos[quarter_circle](wf)= " << eve::sincos[eve::quarter_circle](wf) << "\n";
std::cout << "-> sincos[half_circle](wf) = " << eve::sincos[eve::half_circle](wf) << "\n";
std::cout << "-> sincos[full_circle](wf) = " << eve::sincos[eve::full_circle](wf) << "\n";
}
constexpr auto pi
Callable object computing the constant .
Definition pi.hpp:77
Lightweight type-wrapper.
Definition as.hpp:29
Wrapper for SIMD registers.
Definition wide.hpp:70