We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c9018b commit 6880efbCopy full SHA for 6880efb
1 file changed
python_speech_features/sigproc.py
@@ -97,7 +97,7 @@ def logpowspec(frames,NFFT,norm=1):
97
98
:param frames: the array of frames. Each row is a frame.
99
:param NFFT: the FFT length to use. If NFFT > frame_len, the frames are zero-padded.
100
- :param norm: If norm=1, the log power spectrum is normalised so that the max value (across all frames) is 1.
+ :param norm: If norm=1, the log power spectrum is normalised so that the max value (across all frames) is 0.
101
:returns: If frames is an NxD matrix, output will be Nx(NFFT/2+1). Each row will be the log power spectrum of the corresponding frame.
102
"""
103
ps = powspec(frames,NFFT);
0 commit comments