This is documentation for an old release of SciPy (version 0.10.0). Read this page Search for this page in the documentation of the latest stable release (version 1.15.1).
scipy.special.betainc
-
scipy.special.betainc(x1, x2, x3[, out]) = <ufunc 'betainc'>
y=betainc(a,b,x) returns the incomplete beta integral of the
arguments, evaluated from zero to x:
gamma(a+b) / (gamma(a)*gamma(b)) * integral(t**(a-1) (1-t)**(b-1), t=0..x).