scipy.special.
y1p_zeros#
- scipy.special.y1p_zeros(nt, complex=False)[源代码][源代码]#
计算贝塞尔导数 Y1’(z) 的 nt 个零点,并在每个零点处计算其值。
值由 Y1(z1) 在每个 z1 处给出,其中 Y1’(z1)=0。
- 参数:
- nt整数
返回的零的数量
- 复杂bool, 默认 False
设置为 False 以仅返回实数零点;设置为 True 以仅返回具有负实部和正虚部的复数零点。请注意,后者的复共轭也是函数的零点,但不会被此例程返回。
- 返回:
- z1pnndarray
Y1’(z) 的第 n 个零点的位置
- y1z1pnndarray
第 n 个零点的导数 Y1(z1) 的值
参考文献
[1]张善杰和金建铭。《特殊函数的计算》,John Wiley and Sons, 1996年,第5章。https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html
示例
计算 \(Y_1'\) 的前四个根及其在这些根处的 \(Y_1\) 值。
>>> import numpy as np >>> from scipy.special import y1p_zeros >>> y1grad_roots, y1_values = y1p_zeros(4) >>> with np.printoptions(precision=5): ... print(f"Y1' Roots: {y1grad_roots.real}") ... print(f"Y1 values: {y1_values.real}") Y1' Roots: [ 3.68302 6.9415 10.1234 13.28576] Y1 values: [ 0.41673 -0.30317 0.25091 -0.21897]
y1p_zeros
可以直接用于计算 \(Y_1\) 的极值点。这里我们绘制 \(Y_1\) 及其前四个极值。>>> import matplotlib.pyplot as plt >>> from scipy.special import y1, yvp >>> y1_roots, y1_values_at_roots = y1p_zeros(4) >>> real_roots = y1_roots.real >>> xmax = 15 >>> x = np.linspace(0, xmax, 500) >>> x[0] += 1e-15 >>> fig, ax = plt.subplots() >>> ax.plot(x, y1(x), label=r'$Y_1$') >>> ax.plot(x, yvp(1, x, 1), label=r"$Y_1'$") >>> ax.scatter(real_roots, np.zeros((4, )), s=30, c='r', ... label=r"Roots of $Y_1'$", zorder=5) >>> ax.scatter(real_roots, y1_values_at_roots.real, s=30, c='k', ... label=r"Extrema of $Y_1$", zorder=5) >>> ax.hlines(0, 0, xmax, color='k') >>> ax.set_ylim(-0.5, 0.5) >>> ax.set_xlim(0, xmax) >>> ax.legend(ncol=2, bbox_to_anchor=(1., 0.75)) >>> plt.tight_layout() >>> plt.show()