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

◆ acospi

eve::acospi = functor<acospi_t>
inlineconstexpr

Header file

#include <eve/module/math.hpp>

Callable Signatures

namespace eve
{
// Regular overloads
constexpr auto acospi(floating_value auto x) noexcept; // 1
// Semantic option
constexpr auto acospi[raw](floating_value auto x) noexcept; // 2
// Lanes masking
constexpr auto acospi[conditional_expr auto c](floating_value auto x) noexcept; // 3
constexpr auto acospi[logical_value auto m](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 acospi
elementwise_callable object computing the arc cosine in multiples.
Definition: acospi.hpp:82
EVE Main Namespace.
Definition: abi.hpp:18

Parameters

* `x`: [floating value](@ref eve::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 arc cosine of the input in \(\pi\) multiples, in the range \([0 , 1]\). In particular:
    • If the element is \(1\), \(+0\) is returned.
    • If the element \(|x| > 1\), NaN is returned.
    • If the element is a Nan, NaN is returned.
  2. Same as 1 but uses a faster implementation which can be slightly less accurate near x = 1
  3. The operation is performed conditionnaly.

External references

Example

// revision 1
#include <eve/module/math.hpp>
#include <iostream>
#include <iomanip>
int main()
{
eve::wide wf = { 0.0f, 0.99f, -1.0f, -0.5f, -0.0f, 0.25f, 1.0f, -2.0f};
std::cout << "<- wf = " << wf << "\n";
std::cout << std::setprecision(10);
std::cout << "-> acospi(wf) = " << eve::acospi(wf) << "\n";
std::cout << "-> acospi[raw](wf) = " << eve::acospi[eve::raw](wf) << "\n";
std::cout << "-> acospi[ignore_last(2)](wf)= " << eve::acospi[eve::ignore_last(2)](wf) << "\n";
std::cout << "-> acospi[wf != -2.0f](wf) = " << eve::acospi[wf != -2.0f](wf) << "\n";
}
Conditional expression ignoring the k last lanes from a eve::simd_value.
Definition: conditional.hpp:304
Wrapper for SIMD registers.
Definition: wide.hpp:71