E.V.E
v2023.02.15
Loading...
Searching...
No Matches
◆
ellint_rc
eve::ellint_rc = functor<ellint_rc_t>
inline
constexpr
Header file
#include <eve/module/elliptic.hpp>
Callable Signatures
namespace
eve
{
// Regular overload
constexpr
auto
ellint_1
(
floating_value
auto
x
,
floating_value
auto
y
)
noexcept
;
// 1
// Lanes masking
constexpr
auto
ellint_1
[
conditional_expr
auto
c
](
floating_value
auto
x
,
floating_value
auto
y
)
noexcept
;
// 2
constexpr
auto
ellint_1
[
logical_value
auto
m
](
floating_value
auto
x
,
floating_value
auto
y
)
noexcept
;
// 2
}
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::ellint_1
constexpr auto ellint_1
elementwise_callable object computing the elliptic integrals of the first kind.
Definition
ellint_1.hpp:96
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
,
y
:
floating valuess
.
x
and
y
must be strictly positive and
y
non zero or the result is
NaN
.
c
:
Conditional expression
masking the operation.
m
:
Logical value
masking the operation.
Return value
the value of the Carlson degenerate elliptic integral: \(\mathbf{R}_\mathbf{C}(x, y) = \frac12 \int_{0}^{\infty} \scriptstyle(t+x)^{-1/2}(t+y)^{-1}\scriptstyle\;\mathrm{d}t\) is returned.
The operation is performed conditionnaly
External references
DLMF: Elliptic Integrals
Wolfram MathWorld: Elliptic Integral
Example
// revision 1
#include <eve/module/elliptic.hpp>
#include <iostream>
eve::wide
pf
{1.0f, 0.0f, 1.5f, 3.0f};
eve::wide
qf
{1.0f, 4.0f, 0.2f, 0.5f};
int
main
()
{
std::cout <<
"<- pf = "
<<
pf
<<
"\n"
;
std::cout <<
"<- qf = "
<<
qf
<<
"\n"
;
std::cout <<
"-> ellint_rc(pf, qf) = "
<<
eve::ellint_rc
(
pf
,
qf
) <<
"\n"
;
std::cout <<
"-> ellint_rc[ignore_last(2)](pf, qf)= "
<<
eve::ellint_rc
[
eve::ignore_last
(2)](
pf
,
qf
) <<
"\n"
;
std::cout <<
"-> ellint_rc[qf != 4.0f](pf, qf) = "
<<
eve::ellint_rc
[
qf
!= 4.0f](
pf
,
qf
) <<
"\n"
;
}
eve::ellint_rc
constexpr auto ellint_rc
elementwise_callable object computing the degenerate Carlson's elliptic integral .
Definition
ellint_rc.hpp:81
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