Special.Erfi Method

Definition

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

Overload List

Erfi(Complex<Double>) Evaluates the imaginary error function.
Erfi(Double) Evaluates the imaginary error function.

Erfi(Complex<Double>)

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

Parameters

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

Return Value

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

Remarks

The imaginary error function is defined by: erfi(z) = -i erf(iz).

Erfi(Double)

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

Parameters

x  Double
The argument for which to evaluate the function.

Return Value

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

Remarks

The imaginary error function is defined by: erfi(z) = -i erf(iz).

See Also