#include <eve/module/math.hpp>
{
}
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 sinpicospi
elementwise_callable object computing the simultaneous computation of sin an cos from an argument in ...
Definition sinpicospi.hpp:79
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 sinpi(x)
and cospi(x)
- The operation is performed conditionnaly.
- Assumes that the inputs elements belong to \([-1/4,\1/4]\) and return NaN outside.
#include <eve/module/math.hpp>
#include <iostream>
int main()
{
std::cout << "<- wf = " << wf << "\n";
std::cout <<
"-> sinpicospi[quarter_circle](wf)= " <<
eve::sinpicospi[eve::quarter_circle](wf) <<
"\n";
}
Wrapper for SIMD registers.
Definition wide.hpp:70