RRC Filter Taps: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Block Docs]]
[[Category:Block Docs]]
This is a convenience wrapper for calling firdes.root_raised_cosine().  A root-raised-cosine (RRC) filter is one of the most common pulse shaping filters in digital communications systems, used to perform matched filtering.  See [https://en.wikipedia.org/wiki/Root-raised-cosine_filter for more info on RRC filtering.
This is a convenience wrapper for calling firdes.root_raised_cosine().  A root-raised-cosine (RRC) filter is one of the most common pulse shaping filters in digital communications systems, used to perform matched filtering.  See [https://en.wikipedia.org/wiki/Root-raised-cosine_filter RRC filter at wikipedia] for more info on RRC filtering.


== Parameters ==
== Parameters ==
; Gain
; Gain
: Scaling factor applied to output.
: Overall gain of filter (default 1.0)


; Sample Rate
; Sample Rate
: Input sample rate in Hz.
: Sample rate in samples per second.


; Symbol Rate
; Symbol Rate
: Input symbol rate in Hz, NOT samples per symbol.
: Symbol rate, must be a factor of sample rate. Typically ((samples/second) / (samples/symbol)).


; Excess BW
; Excess BW
: The filter parameter, sometimes called roll-off factor or beta, between 0 and 1.  A higher value means more bandwidth is being used. A common value is 0.35.
: Excess bandwidth factor, also known as alpha. (default: 0.35)


; Num Taps
; Num Taps
: Number of taps for the generated filter to have
: Number of taps (default: 11*samp_rate). Note that the number of generated filter coefficients will be <code>num_taps + 1</code>.


== Example Flowgraph ==
== Example Flowgraph ==
This flowgraph can be found at [https://github.com/gnuradio/gnuradio/blob/master/gr-filter/examples/filter_taps.grc].
[[File:Filter_taps_fg.png|800px]]


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

Latest revision as of 15:29, 4 April 2023

This is a convenience wrapper for calling firdes.root_raised_cosine(). A root-raised-cosine (RRC) filter is one of the most common pulse shaping filters in digital communications systems, used to perform matched filtering. See RRC filter at wikipedia for more info on RRC filtering.

Parameters

Gain
Overall gain of filter (default 1.0)
Sample Rate
Sample rate in samples per second.
Symbol Rate
Symbol rate, must be a factor of sample rate. Typically ((samples/second) / (samples/symbol)).
Excess BW
Excess bandwidth factor, also known as alpha. (default: 0.35)
Num Taps
Number of taps (default: 11*samp_rate). Note that the number of generated filter coefficients will be num_taps + 1.

Example Flowgraph

This flowgraph can be found at [1].

Filter taps fg.png

Source Files

C++ files
TODO
Header files
TODO
Public header files
TODO
Block definition
TODO