We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df39f6d commit fabd520Copy full SHA for fabd520
1 file changed
demo/wp_scalogram.py
@@ -40,7 +40,8 @@
40
# Show spectrogram and wavelet packet coefficients
41
fig2 = plt.figure()
42
ax2 = fig2.add_subplot(211)
43
-ax2.specgram(data, NFFT=64, noverlap=32, cmap=cmap)
+ax2.specgram(data, NFFT=64, noverlap=32, Fs=2, cmap=cmap,
44
+ interpolation='bilinear')
45
ax2.set_title("Spectrogram of signal")
46
ax3 = fig2.add_subplot(212)
47
ax3.imshow(values, origin='upper', extent=[-1, 1, -1, 1],
0 commit comments