本文简要介绍 python 语言中 scipy.special.hyp1f1
的用法。
用法:
scipy.special.hyp1f1(a, b, x, out=None) = <ufunc 'hyp1f1'>#
合流超几何函数 1F1。
合流超几何函数由级数定义
有关详细信息,请参阅 [dlmf]。这里
poch
。 是Pochhammer符号;参见- a, b: array_like
实际参数
- x: array_like
真实或复杂的论点
- out: ndarray,可选
函数结果的可选输出数组
- 标量或 ndarray
汇合超几何函数的值
参数 ::
返回 ::
参考:
[dlmf]NIST 数学函数数字 Library https://dlmf.nist.gov/13.2#E2
例子:
>>> import numpy as np >>> import scipy.special as sc
当 x 为零时为 1:
>>> sc.hyp1f1(0.5, 0.5, 0) 1.0
当 b 为非正整数时,它是奇异的。
>>> sc.hyp1f1(0.5, -1, 0) inf
当 a 为非正整数时,它是多项式。
>>> a, b, x = -1, 0.5, np.array([1.0, 2.0, 3.0, 4.0]) >>> sc.hyp1f1(a, b, x) array([-1., -3., -5., -7.]) >>> 1 + (a / b) * x array([-1., -3., -5., -7.])
当 a = b 时,它简化为 index 函数。
>>> sc.hyp1f1(2, 2, [1, 2, 3, 4]) array([ 2.71828183, 7.3890561 , 20.08553692, 54.59815003]) >>> np.exp([1, 2, 3, 4]) array([ 2.71828183, 7.3890561 , 20.08553692, 54.59815003])
相关用法
- Python SciPy special.hyp2f1用法及代码示例
- Python SciPy special.hyperu用法及代码示例
- Python SciPy special.hyp0f1用法及代码示例
- Python SciPy special.h1vp用法及代码示例
- Python SciPy special.hankel1e用法及代码示例
- Python SciPy special.hankel2e用法及代码示例
- Python SciPy special.huber用法及代码示例
- Python SciPy special.h2vp用法及代码示例
- Python SciPy special.hermite用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ncfdtri用法及代码示例
- Python SciPy special.gamma用法及代码示例
- 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用法及代码示例
- Python SciPy special.j1用法及代码示例
- Python SciPy special.logsumexp用法及代码示例
- Python SciPy special.expit用法及代码示例
- Python SciPy special.polygamma用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.hyp1f1。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。