berp_zeros — SciPy v1.15.3 Manual (original) (raw)
scipy.special.
scipy.special.berp_zeros(nt)[source]#
Compute nt zeros of the derivative of the Kelvin function ber.
Parameters:
ntint
Number of zeros to compute. Must be positive.
Returns:
ndarray
First nt zeros of the derivative of the Kelvin function.
See also
References
[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
Examples
Compute the first 5 zeros of the derivative of the Kelvin function.
from scipy.special import berp_zeros berp_zeros(5) array([ 6.03871081, 10.51364251, 14.96844542, 19.41757493, 23.86430432])