scipy.special.
ynp_zeros#
- scipy.special.ynp_zeros(n, nt)[源代码]#
计算整数阶贝塞尔函数导数 Yn’(x) 的零点。
在区间 \(Y_n'(x)\) 上计算函数的 nt 个零点 \((0, \infty)\)。以升序返回零点。
- 参数:
- nint
贝塞尔函数的阶数
- ntint
返回的零点数
- 返回值:
- ndarray
贝塞尔导数函数的前 nt 个零点。
另请参见
引用
[1]张山杰和金建明。“特殊函数的计算”,约翰·威利父子公司,1996 年,第 5 章。 https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html
示例
计算 0 阶第二类贝塞尔函数一阶导数的前四个根 \(Y_0'\)。
>>> from scipy.special import ynp_zeros >>> ynp_zeros(0, 4) array([ 2.19714133, 5.42968104, 8.59600587, 11.74915483])
绘制 \(Y_0\), \(Y_0'\) 并确认从视觉上看 \(Y_0'\) 的根位于 \(Y_0\) 的局部极值处。
>>> import numpy as np >>> import matplotlib.pyplot as plt >>> from scipy.special import yn, ynp_zeros, yvp >>> zeros = ynp_zeros(0, 4) >>> xmax = 13 >>> x = np.linspace(0, xmax, 500) >>> fig, ax = plt.subplots() >>> ax.plot(x, yn(0, x), label=r'$Y_0$') >>> ax.plot(x, yvp(0, x, 1), label=r"$Y_0'$") >>> ax.scatter(zeros, np.zeros((4, )), s=30, c='r', ... label=r"Roots of $Y_0'$", zorder=5) >>> for root in zeros: ... y0_extremum = yn(0, root) ... lower = min(0, y0_extremum) ... upper = max(0, y0_extremum) ... ax.vlines(root, lower, upper, color='r') >>> ax.hlines(0, 0, xmax, color='k') >>> ax.set_ylim(-0.6, 0.6) >>> ax.set_xlim(0, xmax) >>> plt.legend() >>> plt.show()