本文简要介绍 python 语言中 scipy.special.gammainc
的用法。
用法:
scipy.special.gammainc(a, x, out=None) = <ufunc 'gammainc'>#
正则化下不完全伽马函数。
它被定义为
对于 和 。有关详细信息,请参阅 [dlmf]。
- a: array_like
正参数
- x: array_like
非否定论证
- out: ndarray,可选
函数值的可选输出数组
- 标量或 ndarray
下不完全伽马函数的值
参数 ::
返回 ::
注意:
该函数满足关系
gammainc(a, x) + gammaincc(a, x) = 1
,其中gammaincc
是正则化的上不完全伽马函数。实现很大程度上遵循 [boost] 的实现。
参考:
[dlmf]NIST 数学函数数字 Library https://dlmf.nist.gov/8.2#E4
[促进]马多克等。等,“Incomplete Gamma Functions”,https://www.boost.org/doc/libs/1_61_0/libs/math/doc/html/math_toolkit/sf_gamma/igamma.html
例子:
>>> import scipy.special as sc
它是 gamma 分布的 CDF,因此它从 0 开始并单调增加到 1。
>>> sc.gammainc(0.5, [0, 1, 10, 100]) array([0. , 0.84270079, 0.99999226, 1. ])
它等于一减去上不完全伽马函数。
>>> a, x = 0.5, 0.4 >>> sc.gammainc(a, x) 0.6289066304773024 >>> 1 - sc.gammaincc(a, x) 0.6289066304773024
相关用法
- Python SciPy special.gammaincinv用法及代码示例
- Python SciPy special.gammainccinv用法及代码示例
- Python SciPy special.gammaincc用法及代码示例
- Python SciPy special.gamma用法及代码示例
- Python SciPy special.gammasgn用法及代码示例
- Python SciPy special.gammaln用法及代码示例
- Python SciPy special.genlaguerre用法及代码示例
- Python SciPy special.geterr用法及代码示例
- Python SciPy special.gdtr用法及代码示例
- Python SciPy special.gdtrc用法及代码示例
- Python SciPy special.gdtria用法及代码示例
- Python SciPy special.gdtrix用法及代码示例
- Python SciPy special.gegenbauer用法及代码示例
- Python SciPy special.gdtrib用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ncfdtri用法及代码示例
- Python SciPy special.y1用法及代码示例
- Python SciPy special.y0用法及代码示例
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.i1e用法及代码示例
- Python SciPy special.smirnovi用法及代码示例
- Python SciPy special.ker用法及代码示例
- Python SciPy special.ynp_zeros用法及代码示例
- Python SciPy special.k0e用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.gammainc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。