Meta.Numerics Library
Beta Method (a, b, x)
Meta.NumericsMeta.Numerics.FunctionsAdvancedMathBeta(Double, Double, Double)
Computes the incomplete Beta function.
Declaration Syntax
C#Visual BasicVisual C++F#
public static double Beta(
	double a,
	double b,
	double x
)
Public Shared Function Beta ( _
	a As Double, _
	b As Double, _
	x As Double _
) As Double
public:
static double Beta(
	double a, 
	double b, 
	double x
)
static member Beta : 
        a:float * 
        b:float * 
        x:float -> float 
Parameters
a (Double)
The left shape parameter, which must be non-negative.
b (Double)
The right shape paraemter, which must be non-negative.
x (Double)
The integral endpoint, which must lie in [0,1].
Return Value
The value of Bx(a, b).