本文簡要介紹 python 語言中 scipy.special.erf_zeros
的用法。
用法:
scipy.special.erf_zeros(nt)#
計算第一象限中的第一個 nt 零,按絕對值排序。
其他象限中的零點可以通過使用對稱性 erf(-z) = erf(z) 和 erf(conj(z)) = conj(erf(z)) 來獲得。
- nt: int
要計算的零的數量
- The locations of the zeros of erf: ndarray(複雜)
erf(z) 為零的複數值
參數 ::
返回 ::
參考:
[1]張善傑和金建明。 “特殊函數的計算”,John Wiley and Sons,1996 年。https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html
例子:
>>> from scipy import special >>> special.erf_zeros(1) array([1.45061616+1.880943j])
檢查 erf_zeros 返回的值的 erf 是否(接近)為零
>>> special.erf(special.erf_zeros(1)) array([4.95159469e-14-1.16407394e-16j])
相關用法
- Python SciPy special.erfinv用法及代碼示例
- Python SciPy special.erf用法及代碼示例
- Python SciPy special.erfi用法及代碼示例
- 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.erf_zeros。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。