Skip to content

Commit 6880efb

Browse files
committed
Make documentaion of logpowspec match behaviour
1 parent 9c9018b commit 6880efb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python_speech_features/sigproc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def logpowspec(frames,NFFT,norm=1):
9797
9898
:param frames: the array of frames. Each row is a frame.
9999
: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.
100+
:param norm: If norm=1, the log power spectrum is normalised so that the max value (across all frames) is 0.
101101
: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.
102102
"""
103103
ps = powspec(frames,NFFT);

0 commit comments

Comments
 (0)