本文简要介绍 python 语言中 scipy.special.erf
的用法。
用法:
scipy.special.erf(z, out=None) = <ufunc 'erf'>#
返回复杂参数的误差函数。
它被定义为
2/sqrt(pi)*integral(exp(-t**2), t=0..z)
。- x: ndarray
输入数组。
- out: ndarray,可选
函数值的可选输出数组
- res: 标量或 ndarray
给定点 x 处的误差函数值。
参数 ::
返回 ::
注意:
单位正态分布的累积由
Phi(z) = 1/2[1 + erf(z/sqrt(2))]
给出。参考:
[2]Milton Abramowitz 和 Irene A. Stegun 合编。带有公式、图表和数学表格的数学函数手册。纽约:多佛,1972 年。http://www.math.sfu.ca/~cbm/aands/page_297.htm
[3]Steven G. Johnson,Faddeeva W 函数实现。 http://ab-initio.mit.edu/Faddeeva
例子:
>>> import numpy as np >>> from scipy import special >>> import matplotlib.pyplot as plt >>> x = np.linspace(-3, 3) >>> plt.plot(x, special.erf(x)) >>> plt.xlabel('$x$') >>> plt.ylabel('$erf(x)$') >>> plt.show()
相关用法
- Python SciPy special.erfinv用法及代码示例
- Python SciPy special.erf_zeros用法及代码示例
- 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。