Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #154 from FRidh/cepstrum
Browse files Browse the repository at this point in the history
FIX: typo
  • Loading branch information
FRidh committed Jul 17, 2015
2 parents cb1ad7e + b86e35f commit 4284c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acoustics/cepstrum.py
Expand Up @@ -233,7 +233,7 @@ def minimum_phase(x, n=None):
EXPRESS BRIEFS, VOL. 53, NO. 10, OCTOBER 2006
"""
ceps = real_cepstrum(x), n=n)
ceps = real_cepstrum(x, n=n)
odd = n % 2
window = np.concatenate(([1.0], 2.0*np.ones((n+odd)/2-1),
np.ones(1-odd), np.zeros((n+odd)/2-1)))
Expand Down

0 comments on commit 4284c1f

Please sign in to comment.