public static double LogBeta(
double x,
double y
)
Public Shared Function LogBeta (
x As Double,
y As Double
) As Double
public:
static double LogBeta(
double x,
double y
)
static member LogBeta :
x : float *
y : float -> float
This function accurately computes ln(B(x,y)) even for values of x and y for which B(x,y) is too small or large to be represented by a double.
ArgumentOutOfRangeException | x or y is negative or zero. |