ILNumerics Ultimate VS

ILMathbetaIncomplete Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Evaluates the incomplete Beta function at a given point. For more details about this function, see Wikipedia - Incomplete beta 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> betaIncomplete(
	double a,
	double b,
	InArray<double> x
)

Parameters

a
Type: SystemDouble
A scalar, first parameter of the incomplete Beta function.
b
Type: SystemDouble
A scalar, second parameter of the incomplete Beta function.
x
Type: ILNumericsInArrayDouble
The point where the function is evaluated. x must be in [0,1].

Return Value

Type: RetArrayDouble
The value of the incomplete Beta function at a given point.
Remarks

  • If any of the input arrays is null, an ArgumentNullException will be thrown.
  • If x is empty, an empty array will be returned.
  • If any element of x is xi > 1 and xi < 1, double.NaN will be returned at that element.
  • If any element of x is xi == 0, 0.0 will be returned at that element.
  • If any element of x is xi == 1, 1.0 will be returned at that element.
  • If a or b is negative, an ArgumentException will be thrown.

[ILNumerics Computing Engine]

See Also

Reference