ILNumerics Ultimate VS

ILMathbeta Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Evaluates the componentwise beta function at an array of points defined by w and z. For more details about this function, see Wikipedia - 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> beta(
	InArray<double> z,
	InArray<double> w
)

Parameters

z
Type: ILNumericsInArrayDouble
Input array.
w
Type: ILNumericsInArrayDouble
Input array so that z > w for all component.

Return Value

Type: RetArrayDouble
An array of same size as z and with component values of the beta function.
Remarks

  • If one of the input arrays is empty, an empty array will be returned.
  • If for any component, one has zi < wi, the solution will be double.NaN.
  • If the input array is null, an ArgumentNullException will be thrown.
  • If z and w size are not equal, an ArgumentException will be thrown.

[ILNumerics Computing Engine]

See Also

Reference