2.1.16.6.4.2 elliptic_integral_rd


Description

Symmetrised elliptic integral of 2nd kind RD(x,y,z)

Syntax

double elliptic_integral_rd( double x, double y, double z )

Parameters

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

Return

Returns a value of the symmetrised elliptic integral of 2nd kind

Examples

EX1

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

Remark

See Also

elliptic_integral_rc, elliptic_integral_rf, elliptic_integral_rj

Header to Include

origin.h

Reference