本文簡要介紹 python 語言中 scipy.special.erfinv
的用法。
用法:
scipy.special.erfinv(y, out=None) = <ufunc 'erfinv'>#
誤差函數的逆。
計算誤差函數的倒數。
在複數域中,不存在唯一滿足erf(w)=z的複數w。這表明真正的反函數是多值的。當定義域限製為實數 -1 < x < 1 時,存在唯一的實數滿足 erf(erfinv(x)) = x。
- y: ndarray
評估的論點。域:[-1, 1]
- out: ndarray,可選
函數值的可選輸出數組
- erfinv: 標量或 ndarray
y 的 erf 的倒數,逐元素
參數 ::
返回 ::
例子:
>>> import numpy as np >>> import matplotlib.pyplot as plt >>> from scipy.special import erfinv, erf
>>> erfinv(0.5) 0.4769362762044699
>>> y = np.linspace(-1.0, 1.0, num=9) >>> x = erfinv(y) >>> x array([ -inf, -0.81341985, -0.47693628, -0.22531206, 0. , 0.22531206, 0.47693628, 0.81341985, inf])
驗證
erf(erfinv(y))
是y
。>>> erf(x) array([-1. , -0.75, -0.5 , -0.25, 0. , 0.25, 0.5 , 0.75, 1. ])
繪製函數:
>>> y = np.linspace(-1, 1, 200) >>> fig, ax = plt.subplots() >>> ax.plot(y, erfinv(y)) >>> ax.grid(True) >>> ax.set_xlabel('y') >>> ax.set_title('erfinv(y)') >>> plt.show()
相關用法
- Python SciPy special.erfi用法及代碼示例
- Python SciPy special.erf用法及代碼示例
- Python SciPy special.erf_zeros用法及代碼示例
- 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.erfinv。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。