E.V.E
v2023.02.15
Loading...
Searching...
No Matches
◆
asecd
eve::asecd = functor<asecd_t>
inline
constexpr
Header file
#include <eve/module/math.hpp>
Callable Signatures
namespace
eve
{
// Regular overloads
constexpr
auto
asecd
(
floating_value
auto
x
)
noexcept
;
// 1
// Semantic option
constexpr
auto
asecd
[raw](
floating_value
auto
x
)
noexcept
;
// 2
// Lanes masking
constexpr
auto
asecd
[
conditional_expr
auto
c
](
floating_value
auto
x
)
noexcept
;
// 3
constexpr
auto
asecd
[
logical_value
auto
m
](
floating_value
auto
x
)
noexcept
;
// 3
}
eve::conditional_expr
Specifies that a type is a Conditional Expression.
Definition
conditional.hpp:28
eve::floating_value
The concept floating_value<T> is satisfied if and only if T satisfies eve::value and the element type...
Definition
value.hpp:116
eve::logical_value
The concept logical_value<T> is satisfied if and only if T satisfies eve::value and the element type ...
Definition
value.hpp:134
eve::asecd
constexpr auto asecd
elementwise_callable object computing the arc secant in degree.
Definition
asecd.hpp:82
eve::translate_t
typename decltype(detail::as_translated_type(as< T >{}))::type translate_t
Returns the final translated type of T.
Definition
translation.hpp:107
eve
EVE Main Namespace.
Definition
abi.hpp:19
Parameters
x
:
floating value
.
c
:
Conditional expression
masking the operation.
m
:
Logical value
masking the operation.
Return value
Returns the
elementwise
value in degrees of the arc secant of the input in the range \([0 , 180]\). In particular:
If the element is \(1\), \(+0\) is returned.
If the element is \(0\), \(180\) is returned.
If the element \(|x| < 1\),
NaN
is returned.
If the element is a
Nan
,
NaN
is returned.
Same as 1 but uses a faster implementation which can be slightly less accurate near 'x = 1'
The operation is performed conditionnaly
.
External references
Wolfram MathWorld: Inverse Secant
Wikipedia: Inverse trigonometric functions
DLMF: Inverse trigonometric functions
Example
// revision 1
#include <eve/module/math.hpp>
#include <iostream>
#include <iomanip>
int
main
()
{
eve::wide
wf
= { 5.0f, 2.0f, -1.0f, -2.0f, -5.0f, 1.001f, -1.0f, 0.0f};
std::cout <<
"<- wf = "
<<
wf
<<
"\n"
;
std::cout << std::setprecision(10);
std::cout <<
"-> asecd(wf) = "
<<
eve::asecd
(
wf
) <<
"\n"
;
std::cout <<
"-> asecd[raw](wf) = "
<<
eve::asecd
[eve::raw](
wf
) <<
"\n"
;
std::cout <<
"-> asecd[ignore_last(2)](wf)= "
<<
eve::asecd
[
eve::ignore_last
(2)](
wf
) <<
"\n"
;
std::cout <<
"-> asecd[wf != 2.0f](wf) = "
<<
eve::asecd
[
wf
!= 2.0f](
wf
) <<
"\n"
;
}
eve::ignore_last
Conditional expression ignoring the k last lanes from a eve::simd_value.
Definition
conditional.hpp:320
eve::wide
Wrapper for SIMD registers.
Definition
wide.hpp:94
eve