Skip to content

Commit db22f35

Browse files
committed
Fix
1 parent 31839b8 commit db22f35

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

audio_filters/iir_filter.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ class IIRFilter:
1818
{a_{0}+a_{1}z^{-1}+a_{2}z^{-2}+...+a_{k}z^{-k}}
1919
2020
we can rewrite this to
21-
.. math:: y[n]={\frac{1}{a_{0}}}\left(\left(b_{0}x[n]+b_{1}x[n-1]+b_{2}x[n-2]+...+b_{k}x[n-k]\right)-
21+
.. math:: y[n]={\frac{1}{a_{0}}}
22+
\left(\left(b_{0}x[n]+b_{1}x[n-1]+b_{2}x[n-2]+...+b_{k}x[n-k]\right)-
2223
\left(a_{1}y[n-1]+a_{2}y[n-2]+...+a_{k}y[n-k]\right)\right)
2324
"""
2425

0 commit comments

Comments
 (0)