| elliptic_integral_rf  DescriptionSymmetrised elliptic integral of 1st kind RF(x,y,z) Syntax
double elliptic_integral_rf( 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 1st kind ExamplesEX1 
void elliptic_integral_rf_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_rf(dx[ii],dy[ii],dz));
}
RemarkSee Alsoelliptic_integral_rc, elliptic_integral_rd, elliptic_integral_rj   header to Includeorigin.h Reference |