AdvancedMathLeftRegularizedBeta Method |
Computes the regularized incomplete Beta function.
Namespace:
Meta.Numerics.Functions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
Parameters
- a
- Type: SystemDouble
The left shape parameter, which must be non-negative. - b
- Type: SystemDouble
The right shape parameter, which must be non-negative. - x
- Type: SystemDouble
The integral endpoint, which must lie in [0,1].
Return Value
Type:
DoubleThe value of I
x(a, b) = B
x(a, b) / B(a, b).
Exceptions See Also