Skip to content

Instantly share code, notes, and snippets.

@linktohack
Created April 20, 2013 15:41
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 linktohack/5426380 to your computer and use it in GitHub Desktop.
Save linktohack/5426380 to your computer and use it in GitHub Desktop.
numpy Hanning Window
% Hanning Windows
window = (0:block-1)'; %' Mwhaa Sublime :))
window = 0.5*(1-cos(2*pi*window/(block-1)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment