Skip to content

Commit 8d32927

Browse files
committed
Fix
1 parent 79e9477 commit 8d32927

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

audio_filters/iir_filter.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ class IIRFilter:
99
---
1010
1111
Implementation details:
12-
Based on the 2nd-order function from https://en.wikipedia.org/wiki/Digital_biquad_filter, this generalized N-order function was made.
12+
Based on the 2nd-order function from
13+
https://en.wikipedia.org/wiki/Digital_biquad_filter,
14+
this generalized N-order function was made.
1315
1416
Using the following transfer function
1517
.. math:: H(z)=\frac{b_{0}+b_{1}z^{-1}+b_{2}z^{-2}+...+b_{k}z^{-k}}{a_{0}+a_{1}z^{-1}+a_{2}z^{-2}+...+a_{k}z^{-k}}

0 commit comments

Comments
 (0)