elliptic_integral_rc

 

Description

Degenerate symmetrised elliptic integral of 1st kind RC(x,y)

Syntax

double elliptic_integral_rc( double x, double y )

Parameters

x
[input] the argument x of the function
y
[input] the argument y of the function

Return

Returns a value of an elementary integral, which occurs as a degenerate case of an elliptic integral of the first kind

Examples

EX1

void elliptic_integral_rc_ex1()
{
        double dx[3] = {0.5,1.0,1.5};
        double dy = 1.0;
        for(int ii = 0; ii<3 ; ii++)
                printf("%lf    %lf:    %lf\n",dx[ii],dy,elliptic_integral_rc(dx[ii],dy));
}

Remark

See Also

elliptic_integral_rd, elliptic_integral_rf, elliptic_integral_rj

header to Include

origin.h

Reference