Callable object computing the inverse gudermanian, i.e. \(2\tanh(\tan(x/2))\).
{
template< eve::floating_value T >
template< eve::floating_value T >
}
constexpr callable_agd_ agd
Callable object computing the inverse gudermanian, i.e. .
Definition: agd.hpp:65
constexpr callable_acotpi_ acotpi
Callable object computing in multiples.
Definition: acotpi.hpp:66
SIMD-compatible representation of complex numbers.
Definition: complex.hpp:39
#include <eve/module/math.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
std::cout << "---- simd" << '\n'
<< "<- pf = " << pf << '\n'
<<
"-> agd(pf) = " <<
eve::agd(pf) <<
'\n';
float xf = 3.0f;
std::cout << "---- scalar" << '\n'
<< "<- xf = " << xf << '\n'
<<
"-> agd(xf) = " <<
eve::agd(xf) <<
'\n';
return 0;
}
constexpr callable_pio_4_ pio_4
Callable object computing the constant .
Definition: pio_4.hpp:49
constexpr callable_pio_2_ pio_2
Callable object computing the constant .
Definition: pio_2.hpp:49
Lightweight type-wrapper.
Definition: as.hpp:29
Wrapper for SIMD registers.
Definition: wide.hpp:65