Thanks to visit codestin.com Credit goes to github.com
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 0e8027e commit d0e6d30Copy full SHA for d0e6d30
1 file changed
examples/specgram_demo.py
@@ -21,6 +21,9 @@
21
# the frequency vector, bins are the centers of the time bins in which
22
# the power is computed, and im is the matplotlib.image.AxesImage
23
# instance
24
+
25
+ax1 = subplot(211)
26
+plot(t, x)
27
+subplot(212, sharex=ax1)
28
Pxx, freqs, bins, im = specgram(x, NFFT=NFFT, Fs=Fs, noverlap=900)
-colorbar()
29
show()
0 commit comments