当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy special.erfcx用法及代码示例


本文简要介绍 python 语言中 scipy.special.erfcx 的用法。

用法:

scipy.special.erfcx(x, out=None) = <ufunc 'erfcx'>#

缩放的互补误差函数,exp(x**2) * erfc(x)

参数

x array_like

实值或复值参数

out ndarray,可选

函数结果的可选输出数组

返回

标量或 ndarray

缩放互补误差函数的值

注意

参考

[1]

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.erfcx(x))
>>> plt.xlabel('$x$')
>>> plt.ylabel('$erfcx(x)$')
>>> plt.show()
scipy-special-erfcx-1.png

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.erfcx。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。