Removed useless comments from melbank.py

This commit is contained in:
Scott Lawson 2016-11-13 01:10:07 -08:00
parent b65989c8f1
commit e8b8a09047
1 changed files with 1 additions and 9 deletions

View File

@ -152,12 +152,4 @@ def compute_melmat(num_mel_bands=12, freq_min=64, freq_max=8000,
(upper - freqs[right_slope]) / (upper - center)
)
return melmat, (center_frequencies_mel, freqs)
# from pylab import plt
# f1, f2 = 10, 12000
# melmat, (melfreq, fftfreq) = compute_melmat(6, f1, f2, num_fft_bands=4097)
# plt.plot(fftfreq, melmat.T)
# # plt.show()
return melmat, (center_frequencies_mel, freqs)