Computes the Beta function.

Namespace: Meta.Numerics.Functions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual 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