本文簡要介紹 python 語言中 scipy.special.ber
的用法。
用法:
scipy.special.ber(x, out=None) = <ufunc 'ber'>#
開爾文函數 ber。
定義為
其中
jv
)。有關詳細信息,請參閱 [dlmf]。 是第一類零階貝塞爾函數(參見- x: array_like
真正的參數。
- out: ndarray,可選
函數結果的可選輸出數組。
- 標量或 ndarray
開爾文函數的值。
參數 ::
返回 ::
參考:
[dlmf]NIST,數學函數數字 Library ,https://dlmf.nist.gov/10.61
例子:
它可以用貝塞爾函數來表示。
>>> import numpy as np >>> import scipy.special as sc >>> x = np.array([1.0, 2.0, 3.0, 4.0]) >>> sc.jv(0, x * np.exp(3 * np.pi * 1j / 4)).real array([ 0.98438178, 0.75173418, -0.22138025, -2.56341656]) >>> sc.ber(x) array([ 0.98438178, 0.75173418, -0.22138025, -2.56341656])
相關用法
- Python SciPy special.bernoulli用法及代碼示例
- Python SciPy special.betaincinv用法及代碼示例
- Python SciPy special.besselpoly用法及代碼示例
- Python SciPy special.betainc用法及代碼示例
- Python SciPy special.betainccinv用法及代碼示例
- Python SciPy special.bei用法及代碼示例
- Python SciPy special.beta用法及代碼示例
- Python SciPy special.betaincc用法及代碼示例
- Python SciPy special.betaln用法及代碼示例
- Python SciPy special.bi_zeros用法及代碼示例
- Python SciPy special.bdtri用法及代碼示例
- Python SciPy special.boxcox1p用法及代碼示例
- Python SciPy special.binom用法及代碼示例
- Python SciPy special.boxcox用法及代碼示例
- Python SciPy special.exp1用法及代碼示例
- Python SciPy special.expn用法及代碼示例
- Python SciPy special.ncfdtri用法及代碼示例
- Python SciPy special.gamma用法及代碼示例
- Python SciPy special.y1用法及代碼示例
- Python SciPy special.y0用法及代碼示例
- Python SciPy special.ellip_harm_2用法及代碼示例
- Python SciPy special.i1e用法及代碼示例
- Python SciPy special.smirnovi用法及代碼示例
- Python SciPy special.ker用法及代碼示例
- Python SciPy special.ynp_zeros用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.ber。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。