ibeta function
The incomplete beta function. See: https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function
Implementation
double ibeta(double a, double b, double x) {
return ibetaReg(a, b, x) * beta(a, b);
}
The incomplete beta function. See: https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function
double ibeta(double a, double b, double x) {
return ibetaReg(a, b, x) * beta(a, b);
}