scipy.special.
spherical_jn#
- scipy.special.spherical_jn(n, z, derivative=False)[source]#
球形贝塞尔第一类函数或其导数。
定义为 [1],
\[j_n(z) = \sqrt{\frac{\pi}{2z}} J_{n + 1/2}(z),\]其中 \(J_n\) 是第一类贝塞尔函数。
- 参数:
- nint, array_like
贝塞尔函数的阶数 (n >= 0)。
- zcomplex or float, array_like
贝塞尔函数的自变量。
- derivativebool, optional
如果为 True,则返回导数值(而非函数本身)。
- 返回:
- jnndarray
备注
对于大于阶数的实数自变量,该函数使用递增递推 [2] 来计算。对于较小的实数或复数自变量,使用第一类圆柱贝塞尔函数的定义关系。
衍生使用关系 [3] 计算:
\[ \begin{align}\begin{aligned}j_n'(z) = j_{n-1}(z) - \frac{n + 1}{z} j_n(z).\\j_0'(z) = -j_1(z)\end{aligned}\end{align} \]0.18.0 版中新增。
参考
[AS]Milton Abramowitz 与 Irene A. Stegun 编辑。含有公式、图形和数学表格的数学函数手册。纽约:Dover,1972 年。
示例
第一类球贝塞尔函数 \(j_n\) 同时接受真实和复杂的第二个参数。它们可以返回一个复杂类型
>>> from scipy.special import spherical_jn >>> spherical_jn(0, 3+5j) (-9.878987731663194-8.021894345786002j) >>> type(spherical_jn(0, 3+5j)) <class 'numpy.complex128'>
对于 \(n=3\),我们可以检验间隙 \([1, 2]\) 中的注释中导数的关系
>>> import numpy as np >>> x = np.arange(1.0, 2.0, 0.01) >>> np.allclose(spherical_jn(3, x, True), ... spherical_jn(2, x) - 4/x * spherical_jn(3, x)) True
第一个几个 \(j_n\) 带有真实参数
>>> import matplotlib.pyplot as plt >>> x = np.arange(0.0, 10.0, 0.01) >>> fig, ax = plt.subplots() >>> ax.set_ylim(-0.5, 1.5) >>> ax.set_title(r'Spherical Bessel functions $j_n$') >>> for n in np.arange(0, 4): ... ax.plot(x, spherical_jn(n, x), label=rf'$j_{n}$') >>> plt.legend(loc='best') >>> plt.show()