Returns the value of the incomplete beta function at a given value.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

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

Parameters

a
Type: System..::.Double
a parameter.
b
Type: System..::.Double
b parameter.
x
Type: System..::.Double
x parameter.

Return Value

The incomplete beta.

Remarks

The incomplete beta function is a generalization of the beta function.

See Also