Special.Erf Method

Definition

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

Overload List

Erf(Complex<Double>) Evaluates the error function.
Erf(Double) Evaluates the error function.
Erf(Double, Double) Evaluates the two-argument error function.

Erf(Complex<Double>)

Evaluates the error function.
C#
public static Complex<double> Erf(
	Complex<double> z
)

Parameters

z  Complex<Double>
The argument for which to evaluate the function.

Return Value

Complex<Double>
The value of the error function for the specified argument.

Erf(Double)

Evaluates the error function.
C#
public static double Erf(
	double x
)

Parameters

x  Double
The argument for which to evaluate the function.

Return Value

Double
The value of the error function for the specified argument.

Erf(Double, Double)

Evaluates the two-argument error function.
C#
public static double Erf(
	double x1,
	double x2
)

Parameters

x1  Double
The first argument.
x2  Double
The second argument.

Return Value

Double
The value of the error function for the specified arguments.

See Also