Python 中的开尔文函数 KelvinBer[n,z]
Kelvin function KelvinBer[n,z] in Python
在 Mathematica 中有开尔文函数 KelvinBer[n,z]。我需要 Python 中 n=0 和 n=1 的等价物。
有 scipy.special.ber(x),但据我了解并尝试过,它带有 n=0。是否有已定义的 n=1 可用的 KelvinBer?
我可以用数字来实现它,但如果有人知道更快的方法,我将不胜感激。
Mpmath has a ber()
function 接受一个 n
参数。
在 Mathematica 中有开尔文函数 KelvinBer[n,z]。我需要 Python 中 n=0 和 n=1 的等价物。
有 scipy.special.ber(x),但据我了解并尝试过,它带有 n=0。是否有已定义的 n=1 可用的 KelvinBer?
我可以用数字来实现它,但如果有人知道更快的方法,我将不胜感激。
Mpmath has a ber()
function 接受一个 n
参数。