Zerothorder Bessel函数Python

2024-09-28 03:19:51 发布

您现在位置:Python中文网/ 问答频道 /正文

为这个问题的简单性道歉。在

我想用Python实现一个等式。在这个方程中,K_0是零阶修正贝塞尔函数。在

在Python中实现ku0的最佳方法是什么?在


Tags: 方法函数方程等式零阶ku0
1条回答
网友
1楼 · 发布于 2024-09-28 03:19:51

不需要实现它;它包括在内。请参阅scipy.special模块的文档,特别是优化后的通用模块here

>>> import scipy.special
>>> print scipy.special.k0.__doc__
k0(x[, out])

y=k0(x) returns the modified Bessel function of the second kind (sometimes called the third kind) of
order 0 at x.
>>> scipy.special.k0(1)
0.42102443824070823

或者更广泛地说:

^{pr2}$

相关问题 更多 >

    热门问题