Meta.Numerics Library
Beta Method (a, b)
Meta.NumericsMeta.Numerics.FunctionsAdvancedMathBeta(Double, Double)
Computes the Beta function.
Declaration Syntax
C#Visual BasicVisual C++F#
public static double Beta(
	double a,
	double b
)
Public Shared Function Beta ( _
	a As Double, _
	b As Double _
) As Double
public:
static double Beta(
	double a, 
	double b
)
static member Beta : 
        a:float * 
        b:float -> float 
Parameters
a (Double)
The first parameter.
b (Double)
The second parameter.
Return Value
The beta function B(a,b).
See Also