Skip to content

Commit

Permalink
Update wp_scalogram.py
Browse files Browse the repository at this point in the history
ax3.imshow(values, origin='lower', extent=[0, 1, values.shape[0], 1], 
           interpolation='nearest', aspect='auto')
  • Loading branch information
omersayli authored Sep 17, 2024
1 parent 259e38a commit 55363a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/wp_scalogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
interpolation='bilinear')
ax2.set_title("Spectrogram of signal")
ax3 = fig2.add_subplot(212)
ax3.imshow(values, origin='lower', extent=[0, 1, 1, values.shape[0]],
ax3.imshow(values, origin='lower', extent=[0, 1, values.shape[0], 1],
interpolation='nearest', aspect='auto')
ax3.set_title("Wavelet packet coefficients")

Expand Down

0 comments on commit 55363a6

Please sign in to comment.