scipy.special.

berp_zeros#

scipy.special.berp_zeros(nt)[源代码]#

计算 Kelvin 函数 ber 的导数的 nt 个零点。

参数:
ntint

要计算的零点个数。必须为正数。

返回:
ndarray

Kelvin 函数导数的第一个 nt 个零点。

另请参阅

ber, berp

参考文献

[1]

Zhang, Shanjie 和 Jin, Jianming. “特殊函数的计算”, 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])