Special.EllipticE Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

EllipticE(Complex<Double>) Returns the value of the complete elliptic integral of the second kind.
EllipticE(Double) Returns the value of the complete elliptic integral of the second kind.
EllipticE(Complex<Double>, Complex<Double>) Returns the value of the incomplete elliptic integral of the second kind.
EllipticE(Double, Double) Returns the value of the incomplete elliptic integral of the second kind.

EllipticE(Complex<Double>)

Returns the value of the complete elliptic integral of the second kind.
C#
public static Complex<double> EllipticE(
	Complex<double> k
)

Parameters

k  Complex<Double>
The modulus.

Return Value

Complex<Double>

EllipticE(Double)

Returns the value of the complete elliptic integral of the second kind.
C#
public static double EllipticE(
	double k
)

Parameters

k  Double
The modulus.

Return Value

Double

EllipticE(Complex<Double>, Complex<Double>)

Returns the value of the incomplete elliptic integral of the second kind.
C#
public static Complex<double> EllipticE(
	Complex<double> phi,
	Complex<double> k
)

Parameters

phi  Complex<Double>
The amplitude.
k  Complex<Double>
The modulus.

Return Value

Complex<Double>

EllipticE(Double, Double)

Returns the value of the incomplete elliptic integral of the second kind.
C#
public static double EllipticE(
	double phi,
	double k
)

Parameters

phi  Double
The amplitude.
k  Double
The modulus.

Return Value

Double

See Also