當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python SciPy special.erfc用法及代碼示例


本文簡要介紹 python 語言中 scipy.special.erfc 的用法。

用法:

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

互補誤差函數,1 - erf(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.erfc(x))
>>> plt.xlabel('$x$')
>>> plt.ylabel('$erfc(x)$')
>>> plt.show()
scipy-special-erfc-1.png

相關用法


注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.erfc。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。