Matplotlib.mlab对象无法广播为单个形状

时间:2017-11-15 19:49:58

标签: python matplotlib signals matplotlib.mlab

我的代码:

(x, y, t) = mlab.psd(
    d,
    Fs=1.0 / h['xdelta'],
    NFFT=512)
psd = 20 * np.log10(y)
plt.plot(x, y, t)
plt.show()

我在执行时遇到以下错误:

ValueError: shape mismatch: objects cannot be broadcast to a single shape.

我觉得这很简单,但我似乎无法让它发挥作用。 我该如何解决这个问题?

0 个答案:

没有答案