alibabasglab commited on
Commit
06931e3
·
verified ·
1 Parent(s): 614fb51

Update scores/srmr/modulation_filters.py

Browse files
Files changed (1) hide show
  1. scores/srmr/modulation_filters.py +3 -3
scores/srmr/modulation_filters.py CHANGED
@@ -11,8 +11,8 @@ import scipy.signal as sig
11
  def make_modulation_filter(w0, Q):
12
  W0 = np.tan(w0/2)
13
  B0 = W0/Q
14
- b = np.array([B0, 0, -B0], dtype=np.float)
15
- a = np.array([(1 + B0 + W0**2), (2*W0**2 - 2), (1 - B0 + W0**2)], dtype=np.float)
16
  return b, a
17
 
18
  def modulation_filterbank(mf, fs, Q):
@@ -27,7 +27,7 @@ def compute_modulation_cfs(min_cf, max_cf, n):
27
  return cfs
28
 
29
  def modfilt(F, x):
30
- y = np.zeros((len(F), len(x)), dtype=np.float)
31
  for k, f in enumerate(F):
32
  y[k] = sig.lfilter(f[0], f[1], x)
33
  return y
 
11
  def make_modulation_filter(w0, Q):
12
  W0 = np.tan(w0/2)
13
  B0 = W0/Q
14
+ b = np.array([B0, 0, -B0], dtype=float)
15
+ a = np.array([(1 + B0 + W0**2), (2*W0**2 - 2), (1 - B0 + W0**2)], dtype=float)
16
  return b, a
17
 
18
  def modulation_filterbank(mf, fs, Q):
 
27
  return cfs
28
 
29
  def modfilt(F, x):
30
+ y = np.zeros((len(F), len(x)), dtype=float)
31
  for k, f in enumerate(F):
32
  y[k] = sig.lfilter(f[0], f[1], x)
33
  return y