本文簡要介紹 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()
相關用法
- Python SciPy special.erfc用法及代碼示例
- Python SciPy special.erfcinv用法及代碼示例
- Python SciPy special.erfinv用法及代碼示例
- Python SciPy special.erf用法及代碼示例
- Python SciPy special.erf_zeros用法及代碼示例
- Python SciPy special.erfi用法及代碼示例
- 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.erfcx。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。