Converts mel value to hertz
mel
double mel_to_hertz(double mel) { return 700 * (exp(mel / 1127) - 1); }