Difference between revisions of "Single Pole IIR Filter"
From GNU Radio
(add example flowgraph) |
(→Example Flowgraph) |
||
Line 14: | Line 14: | ||
== Example Flowgraph == | == Example Flowgraph == | ||
− | [[File:MorseGen_fg.png]] | + | [[File:MorseGen_fg.png|800px]] |
== Source Files == | == Source Files == |
Latest revision as of 16:09, 28 March 2020
The input and output satisfy a difference equation of the form y[n] - (1-alpha) y[n-1] = alpha x[n]
with the corresponding rational system function H(z) = \frac{alpha}{1 - (1-alpha) z^{-1}}
Note that some texts define the system function with a + in the denominator. If you're using that convention, you'll need to negate the feedback tap.
Parameters[edit]
(R): Run-time adjustable
- Alpha (R)
Example Flowgraph[edit]
Source Files[edit]
- Public header files
- Base
- Complex input
- Float input
- Block definition
- [5]