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


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


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

用法:

scipy.special.erfcinv(y, out=None) = <ufunc 'erfcinv'>#

互補誤差函數的逆。

計算互補誤差函數的倒數。

在複數域中,不存在唯一滿足erfc(w)=z的複數w。這表明真正的反函數是多值的。當定義域限製為實數 0 < x < 2 時,存在唯一實數滿足 erfc(erfcinv(x)) = erfcinv(erfc(x))。

它與 erfcinv(1-x) = erfinv(x) 的誤差函數的倒數有關

參數

y ndarray

評估的論點。域:[0, 2]

out ndarray,可選

函數值的可選輸出數組

返回

erfcinv 標量或 ndarray

y 的 erfc 的倒數,逐元素

例子

>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> from scipy.special import erfcinv
>>> erfcinv(0.5)
0.4769362762044699
>>> y = np.linspace(0.0, 2.0, num=11)
>>> erfcinv(y)
array([        inf,  0.9061938 ,  0.59511608,  0.37080716,  0.17914345,
       -0.        , -0.17914345, -0.37080716, -0.59511608, -0.9061938 ,
              -inf])

繪製函數:

>>> y = np.linspace(0, 2, 200)
>>> fig, ax = plt.subplots()
>>> ax.plot(y, erfcinv(y))
>>> ax.grid(True)
>>> ax.set_xlabel('y')
>>> ax.set_title('erfcinv(y)')
>>> plt.show()
scipy-special-erfcinv-1.png

相關用法


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