Skip to content

Commit 9c9018b

Browse files
authored
removed debug print statement
1 parent 1442780 commit 9c9018b

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

python_speech_features/sigproc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def magspec(frames,NFFT):
8181
if numpy.shape(frames)[1] > NFFT:
8282
logging.warn('frame length (%d) is greater than FFT size (%d), frame will be truncated. Increase NFFT to avoid.', numpy.shape(frames)[1], NFFT)
8383
complex_spec = numpy.fft.rfft(frames,NFFT)
84-
print(numpy.shape(complex_spec))
8584
return numpy.absolute(complex_spec)
8685

8786
def powspec(frames,NFFT):

0 commit comments

Comments
 (0)