本文简要介绍 python 语言中 scipy.special.erf_zeros
的用法。
用法:
scipy.special.erf_zeros(nt)#
计算第一象限中的第一个 nt 零,按绝对值排序。
其他象限中的零点可以通过使用对称性 erf(-z) = erf(z) 和 erf(conj(z)) = conj(erf(z)) 来获得。
- nt: int
要计算的零的数量
- The locations of the zeros of erf: ndarray(复杂)
erf(z) 为零的复数值
参数 ::
返回 ::
参考:
[1]张善杰和金建明。 “特殊函数的计算”,John Wiley and Sons,1996 年。https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html
例子:
>>> from scipy import special >>> special.erf_zeros(1) array([1.45061616+1.880943j])
检查 erf_zeros 返回的值的 erf 是否(接近)为零
>>> special.erf(special.erf_zeros(1)) array([4.95159469e-14-1.16407394e-16j])
相关用法
- Python SciPy special.erfinv用法及代码示例
- Python SciPy special.erf用法及代码示例
- Python SciPy special.erfi用法及代码示例
- Python SciPy special.erfc用法及代码示例
- Python SciPy special.erfcx用法及代码示例
- Python SciPy special.erfcinv用法及代码示例
- Python SciPy special.errstate用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.expit用法及代码示例
- Python SciPy special.expm1用法及代码示例
- Python SciPy special.ellip_normal用法及代码示例
- Python SciPy special.ellipj用法及代码示例
- Python SciPy special.eval_legendre用法及代码示例
- Python SciPy special.expi用法及代码示例
- Python SciPy special.ellipe用法及代码示例
- Python SciPy special.exp10用法及代码示例
- Python SciPy special.exp2用法及代码示例
- Python SciPy special.eval_chebyc用法及代码示例
- Python SciPy special.elliprd用法及代码示例
- Python SciPy special.eval_chebys用法及代码示例
- Python SciPy special.exprel用法及代码示例
- Python SciPy special.euler用法及代码示例
- Python SciPy special.ellip_harm用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.erf_zeros。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。