Single Pole IIR Filter: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
(add example flowgraph)
Line 14: Line 14:
== Example Flowgraph ==
== Example Flowgraph ==


Insert description of flowgraph here, then show a screenshot of the flowgraph and the output if there is an interesting GUI.  Currently we have no standard method of uploading the actual flowgraph to the wiki or git repo, unfortunately.  The plan is to have an example flowgraph showing how the block might be used, for every block, and the flowgraphs will live in the git repo.
[[File:MorseGen_fg.png]]


== Source Files ==
== Source Files ==

Revision as of 16:08, 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

(R): Run-time adjustable

Alpha (R)

Example Flowgraph

MorseGen fg.png

Source Files

C++ files
[1]
[2]
Header files
[3]
[4]
Public header files
Base
Complex input
Float input
Block definition
[5]