Returns the value of the Beta function.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax 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
- Type: SystemDouble
A double value.
- b
- Type: SystemDouble
A double value.
Return Value
Type:
Double
A
double value specifying the Beta function.
Remarks
The Beta function is defined to be
See
Gamma for the definition of
.
The method Beta requires that both arguments be positive.
See Also