Evaluates the Beta function.

Namespace: Extreme.Mathematics.SpecialFunctions
Assembly:   Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0

Syntax

Visual Basic (Declaration)
Public Shared Function Beta ( _
	a As Double, _
	b As Double _
) As Double
C#
public static double Beta (
	double a,
	double b
)
Visual C++
public:
static double Beta (
	double a, 
	double b
)

Parameters

a
System.Double
The first argument.
b
System.Double
The second argument.

Return Value

The Beta function evaluated for the specified arguments.

Remarks

The Beta function is derived from the Gamma function through a simple identity:

The formal definition of the Beta function is as follows:

See Also