We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad8dbcf commit 953aef1Copy full SHA for 953aef1
1 file changed
audio_filters/iir_filter.py
@@ -19,8 +19,8 @@ class IIRFilter:
19
20
we can rewrite this to
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)-
23
- \left(a_{1}y[n-1]+a_{2}y[n-2]+...+a_{k}y[n-k]\right)\right)
+ \left(\left(b_{0}x[n]+b_{1}x[n-1]+b_{2}x[n-2}+...+b_{k}x[n-k]\right)-
+ \left(a_{1}y[n-1]+a_{2}y[n-2}+...+a_{k}y[n-k]\right)\right)
24
"""
25
26
def __init__(self, order: int) -> None:
0 commit comments