SpecialFunctionsBetaIncomplete Method |
Returns the lower incomplete (unregularized) beta function
B(a,b,x) = int(t^(a-1)*(1-t)^(b-1),t=0..x) for real a > 0, b > 0, 1 >= x >= 0.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double BetaIncomplete(
double a,
double b,
double x
)
Parameters
- a Double
- The first Beta parameter, a positive real number.
- b Double
- The second Beta parameter, a positive real number.
- x Double
- The upper limit of the integral.
Return Value
DoubleThe lower incomplete (unregularized) beta function.
See Also