Skip to content

Instantly share code, notes, and snippets.

@dmastropole
Last active October 17, 2019 00:54
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/4463c25f14ffe652be2cd71f81097c6a to your computer and use it in GitHub Desktop.
Save dmastropole/4463c25f14ffe652be2cd71f81097c6a to your computer and use it in GitHub Desktop.
Mel Bands
# Compute the mel bands
n_bands = 25
# The "+ 2" will make sense in a bit!
m = np.linspace(mel_formula(f_low), mel_formula(f_high), n_bands + 2)
print(m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment