We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79e9477 commit 8d32927Copy full SHA for 8d32927
audio_filters/iir_filter.py
@@ -9,7 +9,9 @@ class IIRFilter:
9
---
10
11
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.
+ Based on the 2nd-order function from
13
+ https://en.wikipedia.org/wiki/Digital_biquad_filter,
14
+ this generalized N-order function was made.
15
16
Using the following transfer function
17
.. 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