| elliptic_integral_rd  DescriptionSymmetrised 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 functiony[input] the argument y of the functionz[input] the argument z of the function ReturnReturns a value of the symmetrised elliptic integral of 2nd kind ExamplesEX1 
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));
}
RemarkSee Alsoelliptic_integral_rc, elliptic_integral_rf, elliptic_integral_rj header to Includeorigin.h Reference |