AdvancedMathLeftRegularizedBeta Method
Computes the regularized incomplete Beta function.
Namespace: Meta.Numerics.FunctionsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static double LeftRegularizedBeta(
double a,
double b,
double x
)
Public Shared Function LeftRegularizedBeta (
a As Double,
b As Double,
x As Double
) As Double
public:
static double LeftRegularizedBeta(
double a,
double b,
double x
)
static member LeftRegularizedBeta :
a : float *
b : float *
x : float -> float
- a Double
- The left shape parameter, which must be non-negative.
- b Double
- The right shape parameter, which must be non-negative.
- x Double
- The integral endpoint, which must lie in [0,1].
DoubleThe value of I
x(a, b) = B
x(a, b) / B(a, b).