Skip to content

Instantly share code, notes, and snippets.

@dmastropole
Created October 14, 2019 23: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 dmastropole/676cbf80e388a60d437458a3dcaea9e1 to your computer and use it in GitHub Desktop.
Save dmastropole/676cbf80e388a60d437458a3dcaea9e1 to your computer and use it in GitHub Desktop.
Frequency Bands
def inverse_mel_formula(m):
return 700 * (np.power(10, m/2595) - 1)
# Convert back to frequency
f = inverse_mel_formula(m)
print(f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment