These functions allows performing inverse trigonometric computations. As the direct functions they admit options such that the return value is exprressed in radian, degrees or \(\pi\) multiples, namely eve::rad, eve::deg and eve::radpi.
Variables | |
| constexpr auto | eve::acos = functor<acos_t> |
| elementwise_callable object computing the arc cosine. | |
| constexpr auto | eve::acot = functor<acot_t> |
| elementwise_callable object computing the arc cotangent. | |
| constexpr auto | eve::acsc = functor<acsc_t> |
| Callable object computing the arc cosecant. | |
| constexpr auto | eve::asec = functor<asec_t> |
| Callable object computing the arc secant. | |
| constexpr auto | eve::asin = functor<asin_t> |
| elementwise_callable object computing the arc sine. | |
| constexpr auto | eve::atan = functor<atan_t> |
| elementwise_callable object computing the arc tangent. | |
| constexpr auto | eve::atan2 = functor<atan2_t> |
| elementwise_callable object computing the arc tangent using the signs of the arguments to determine the correct quadrant. | |
|
inlineconstexpr |
elementwise_callable object computing the arc cosine.
Parameters
Return value
|
inlineconstexpr |
elementwise_callable object computing the arc cotangent.
Parameters
Return value
|
inlineconstexpr |
Callable object computing the arc cosecant.
Parameters
Return value
|
inlineconstexpr |
Callable object computing the arc secant.
Parameters
Return value
|
inlineconstexpr |
elementwise_callable object computing the arc sine.
Parameters
Return value
|
inlineconstexpr |
elementwise_callable object computing the arc tangent.
Parameters
Return value
|
inlineconstexpr |
elementwise_callable object computing the arc tangent using the signs of the arguments to determine the correct quadrant.
Parameters
Return value
The call will return a NaN if x and y are both either null or infinite: this result is not IEEE conformant, but allows to simplify (and speed up) the implementation. In all other cases, the result is standard conformant. And the converted equivalent are returned with the other units.