Evaluates the iinverse of the Regularized Beta function.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static double InverseRegularizedBeta(
double a,
double b,
double x
)
Public Shared Function InverseRegularizedBeta (
a As Double,
b As Double,
x As Double
) As Double
public:
static double InverseRegularizedBeta(
double a,
double b,
double x
)
static member InverseRegularizedBeta :
a : float *
b : float *
x : float -> float
Parameters
- a
- Type: SystemDouble
The first shape parameter. - b
- Type: SystemDouble
The second shape parameter. - x
- Type: SystemDouble
A real number between 0 and 1.
Return Value
Type:
DoubleThe regularized Beta function evaluated for
the specified arguments.
The regularized Beta function is the ratio of
the IncompleteBeta(Double, Double, Double) function
to the complete (or ordinary) Beta(Double, Double) function. It is sometimes referred to as the
normalized incomplete beta function, or even the incomplete Beta function. Care should be taken
when using these methods that the correct method is called.
Reference