SciPy

scipy.special.gdtr

scipy.special.gdtr(a, b, x) = <ufunc 'gdtr'>

Gamma distribution cumulative density function.

Returns the integral from zero to x of the gamma probability density function:

a**b / gamma(b) * integral(t**(b-1) exp(-at), t=0..x).

The arguments a and b are used differently here than in other definitions.

Previous topic

scipy.special.fdtridfd

Next topic

scipy.special.gdtrc