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


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


本文簡要介紹 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])

相關用法


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