Special.Inverse Regularized Beta Method
Evaluates the iinverse of the Regularized Beta function.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
The regularized Beta function evaluated for the specified arguments.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public static double InverseRegularizedBeta(
double a,
double b,
double x
)
Parameters
- a Double
- The first shape parameter.
- b Double
- The second shape parameter.
- x Double
- A real number between 0 and 1.
Return Value
DoubleThe regularized Beta function evaluated for the specified arguments.
Remarks
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.