scipy.special.
jnp_zeros#
- scipy.special.jnp_zeros(n, nt)[源代码]#
计算整数阶 Bessel 函数导数 Jn’ 的零点。
计算表达式 \(J_n'(x)\) 在区间 \((0, \infty)\) 上的 nt 个零点。以升序返回这些零点。注意,对于 \(n > 1\) 存在的 \(x = 0\) 点上的零点不包含在该区间内。
- 参数:
- nint
Bessel 函数阶
- ntint
要返回的零点数
- 返回值:
- ndarray
Bessel 函数的前 nt 个零点。
参考
[1]章善杰、金建明著。“特殊函数的计算”,John Wiley and Sons,1996 年,第 5 章。 https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html
示例
计算 \(J_2'\) 的前四个根。
>>> from scipy.special import jnp_zeros >>> jnp_zeros(2, 4) array([ 3.05423693, 6.70613319, 9.96946782, 13.17037086])
jnp_zeros
输出 \(J_n'\) 的根,因此可用于计算 \(J_n\) 的峰值位置。绘制 \(J_2\),\(J_2'\) 和 \(J_2'\) 的根位置。>>> import numpy as np >>> import matplotlib.pyplot as plt >>> from scipy.special import jn, jnp_zeros, jvp >>> j2_roots = jnp_zeros(2, 4) >>> xmax = 15 >>> x = np.linspace(0, xmax, 500) >>> fig, ax = plt.subplots() >>> ax.plot(x, jn(2, x), label=r'$J_2$') >>> ax.plot(x, jvp(2, x, 1), label=r"$J_2'$") >>> ax.hlines(0, 0, xmax, color='k') >>> ax.scatter(j2_roots, np.zeros((4, )), s=30, c='r', ... label=r"Roots of $J_2'$", zorder=5) >>> ax.set_ylim(-0.4, 0.8) >>> ax.set_xlim(0, xmax) >>> plt.legend() >>> plt.show()