Difference between revisions of "Band Reject Filter"
From GNU Radio
(Created page with "Category:Block Docs Category:Stub Docs This is the template for the "Page-per-block Docs". This first section should describe what the block...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Category:Block Docs]] | [[Category:Block Docs]] | ||
− | + | This filter is a convenience wrapper for an [[Decimating FIR Filter]] and a firdes taps generating function of band-reject type, i.e. calling firdes.band_reject(). | |
− | This is | ||
− | |||
− | |||
== Parameters == | == Parameters == | ||
(''R''): <span class="plainlinks">[https://wiki.gnuradio.org/index.php/GNURadioCompanion#Variable_Controls ''Run-time adjustable'']</span> | (''R''): <span class="plainlinks">[https://wiki.gnuradio.org/index.php/GNURadioCompanion#Variable_Controls ''Run-time adjustable'']</span> | ||
− | ; | + | ; FIR Type (''R'') |
− | : | + | : Specify whether input/output is real or complex, and if the taps are real or complex. |
+ | |||
+ | ; Decimation | ||
+ | : Decimation rate of filter, must be an integer, and cannot change in realtime. | ||
+ | |||
+ | ; Gain (''R'') | ||
+ | : Scaling factor applied to output. | ||
− | ; | + | ; Sample Rate (''R'') |
− | : | + | : Input sample rate. |
− | + | ; Low Cutoff Freq (''R'') | |
+ | : Lower cutoff frequency in Hz | ||
− | + | ; High Cutoff Freq (''R'') | |
+ | : Upper cutoff frequency in Hz | ||
− | + | ; Transition Width (''R'') | |
+ | : Transition width between stop-band and pass-band in Hz | ||
− | ; | + | ; Window (''R'') |
− | : | + | : Type of window to use |
− | ; | + | ; Beta (''R'') |
− | : | + | : The beta paramater only applies to the Kaiser window. |
− | + | == Example Flowgraph == | |
− | |||
− | + | == Source Files == | |
− |
Latest revision as of 03:40, 27 July 2019
This filter is a convenience wrapper for an Decimating FIR Filter and a firdes taps generating function of band-reject type, i.e. calling firdes.band_reject().
Parameters[edit]
(R): Run-time adjustable
- FIR Type (R)
- Specify whether input/output is real or complex, and if the taps are real or complex.
- Decimation
- Decimation rate of filter, must be an integer, and cannot change in realtime.
- Gain (R)
- Scaling factor applied to output.
- Sample Rate (R)
- Input sample rate.
- Low Cutoff Freq (R)
- Lower cutoff frequency in Hz
- High Cutoff Freq (R)
- Upper cutoff frequency in Hz
- Transition Width (R)
- Transition width between stop-band and pass-band in Hz
- Window (R)
- Type of window to use
- Beta (R)
- The beta paramater only applies to the Kaiser window.