scipy.special.

berp_zeros#

scipy.special.berp_zeros(nt)[source]#

計算 Kelvin 函數 ber 導數的 nt 個零點。

參數:
ntint

要計算的零點數量。必須為正數。

回傳:
ndarray

Kelvin 函數導數的前 nt 個零點。

參見

ber, berp

參考文獻

[1]

Zhang, Shanjie and Jin, Jianming. “Computation of Special Functions”, John Wiley and Sons, 1996. https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html

範例

計算 Kelvin 函數導數的前 5 個零點。

>>> from scipy.special import berp_zeros
>>> berp_zeros(5)
array([ 6.03871081, 10.51364251, 14.96844542, 19.41757493, 23.86430432])