scipy.special.gammaincc¶
-
scipy.special.gammaincc(a, x) = <ufunc 'gammaincc'>¶ Regularized upper incomplete gamma function.
Defined as
\[\frac{1}{\Gamma(a)} \int_x^\infty t^{a - 1}e^{-t} dt\]for \(a > 0\) and \(x \geq 0\). The function satisfies the relation
gammainc(a, x) + gammaincc(a, x) = 1wheregammaincis the regularized lower incomplete gamma function.See also
gammaincregularized lower incomplete gamma function
gammaincinvinverse to
gammaincversusxgammainccinvinverse to
gammainccversusx
Notes
The implementation largely follows that of [1].
References
- 1
Maddock et. al., “Incomplete Gamma Functions”, https://www.boost.org/doc/libs/1_61_0/libs/math/doc/html/math_toolkit/sf_gamma/igamma.html
