我认为简短的回答是您希望numpy.sin
将角度 indegrees
作为参数,但文档指定它采用radians
.
看起来数字正在按预期绘制。可视化所有三个图(即 test1、test2 和 test3)的一种方法是使用子图:
import numpy as np
import matplotlib.pyplot as plt
test1 = np.sin(50.*2.*np.pi*np.arange(0., 512., dtype=np.float64))
test2 = np.sin(50.*2.*np.pi*np.linspace(0., 512., 512, endpoint=True, dtype=np.float64))
test3 = np.sin(50.*2.*np.pi*np.linspace(0., 512., 512, endpoint=False, dtype=np.float64))
fig, axs = plt.subplots(3, sharex=True, sharey=True, gridspec_kw={'hspace': 0})
axs[0].plot(np.arange(0, 512), test1)
axs[1].plot(np.arange(0, 512), test2)
axs[2].plot(np.arange(0, 512), test3)
plt.show()
当您执行以下操作时:
print(f"Max of test1: {max(test1)}\nMin of test1: {min(test1)}")
print(f"Max of test2: {max(test2)}\nMin of test2: {min(test2)}")
print(f"Max of test3: {max(test3)}\nMin of test3: {min(test3)}")
输出
Max of test1: 1.4412955306804755e-11
Min of test1: -1.2978086425591747e-11
Max of test2: 0.9999952753720377
Min of test2: -0.9999952753719793
Max of test3: 1.4412955306804755e-11
Min of test3: -1.2978086425591747e-11
可能的解决方案
对我来说,这个问题看起来像图表上的 y 限制在 -1 到 1 之间,这太高了,无法可视化 test1 和 test3(清晰可见)。如果您想更详细地查看 test1 和 test3(在图表上),您可以这样做:
test1 = np.sin(50.*2.*np.pi*np.arange(0., 512., dtype=np.float64))
test2 = np.sin(50.*2.*np.pi*np.linspace(0., 512., 512, endpoint=True, dtype=np.float64))
test3 = np.sin(50.*2.*np.pi*np.linspace(0., 512., 512, endpoint=False, dtype=np.float64))
fig, axs = plt.subplots(3, sharex=True, sharey=True, gridspec_kw={'hspace': 0})
axs[0].set_ylim((min(test1), max(test1)))
axs[0].plot(np.arange(0, 512), test1)
axs[1].plot(np.arange(0, 512), test2)
axs[2].set_ylim((min(test1), max(test1)))
axs[2].plot(np.arange(0, 512), test3)
plt.show()
附加说明
根据 的文档,numpy.sin
它作为 x 的参数是角度 in radians
,不要与 混淆degrees
。
numpy.linspace
文档中要注意的另一点是
请注意,当端点为 False 时,步长会发生变化。
这是一个简单的例子:
np.linspace(0., 512., 5, endpoint=True, dtype=np.float64)
输出
array([ 0., 128., 256., 384., 512.])
和
np.linspace(0., 512., 5, endpoint=False, dtype=np.float64)
输出
array([ 0. , 102.4, 204.8, 307.2, 409.6])
现在,如果快速检查numpy.sin
每个数组中的最大值,即 512. 和 409.6
np.sin(409.6)
输出
0.9294631796005904
和
np.sin(512)
输出
0.07951849401287635
因此,差异。