Skip to content

Instantly share code, notes, and snippets.

@dmastropole
Created October 14, 2019 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmastropole/2e9a6b5ba58eeb733be1db5a87748e71 to your computer and use it in GitHub Desktop.
Save dmastropole/2e9a6b5ba58eeb733be1db5a87748e71 to your computer and use it in GitHub Desktop.
Hanning Window
import numpy as np
window = np.hanning(25)
plt.plot(window)
plt.title('Hanning Window')
plt.xlabel('Time (ms)')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment