Spaces:
Running
Running
Update scores/srmr/modulation_filters.py
Browse files
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=
|
15 |
-
a = np.array([(1 + B0 + W0**2), (2*W0**2 - 2), (1 - B0 + W0**2)], dtype=
|
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=
|
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
|