GammaRelatedBetaI(Double, Double, Double, Boolean) Method |
BetaI(x,a,b) calculates the double precision incomplete beta function.
BetaI(x,a,b) = Integral(0,x) t**(a-1) (1-t)**(b-1) dt
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double BetaI(
double x,
double a,
double b,
bool bDebug
)
Parameters
- x Double
- Function argument.
- a Double
- First exponent, see summary.
- b Double
- Second exponent, see summary.
- bDebug Boolean
- If true, an exception is thrown if serious errors occur. If false, NaN is returned on errors.
Return Value
DoubleThe incomplete beta function of the parameters x, a and b.
See Also