ILNumerics Ultimate VS

ILMatherrorFunctionComplement Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Evaluates of the complementary (Gauss) error function. For more details about this function, see Wikipedia - Complementary Error function.

[ILNumerics Computing Engine]

Namespace:  ILNumerics
Assembly:  ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<double> errorFunctionComplement(
	InArray<double> x
)

Parameters

x
Type: ILNumericsInArrayDouble
The point where the function is evaluated.

Return Value

Type: RetArrayDouble
The value of the complementary error function at the given point x.
Remarks

  • If x is null, an ArgumentNullException will be thrown.
  • If x is empty, an empty array will be returned.
  • If any element of x is xi == double.PositiveInfinity, 0.0 will be returned at that element.
  • If any element of x is xi == double.NegativeInfinity, +2.0 will be returned at that element.

[ILNumerics Computing Engine]

See Also

Reference