Skip to content

Commit 953aef1

Browse files
Add trailing newline in IIRFilter
1 parent ad8dbcf commit 953aef1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

audio_filters/iir_filter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ class IIRFilter:
1919
2020
we can rewrite this to
2121
.. 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)
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)
2424
"""
2525

2626
def __init__(self, order: int) -> None:

0 commit comments

Comments
 (0)