Rational Resampler: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 5: Line 5:


If neither is specified, a reasonable default, 0.4, is used as the fractional_bw.
If neither is specified, a reasonable default, 0.4, is used as the fractional_bw.
This block only works when the output language of the flowgraph is Python.


== Parameters ==
== Parameters ==
Line 19: Line 21:


; Fractional BW
; Fractional BW
: Fractional bandwidth in (0, 0.5), measured at final freq (use 0.4) (float)
: Fractional bandwidth in (0, 0.5), measured at final freq (use 0.4) (float). In GNU Radio 3.8, the default value is 0, which should either be changed to a value 'between' 0 and 0.5; or just removed. Removing the value of fractional bandwidth will cause the block to use the default value of 0.4.


== 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.
This flowgraph shows a Rational Resampler block changing the sample rate from 960 to 500.
 
[[File:RTTY_rcv.png|800px]]


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


; Python files
; C++ files
: [https://github.com/gnuradio/gnuradio/blob/master/gr-filter/python/filter/rational_resampler.py]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-filter/lib/rational_resampler_impl.cc]
 
; Header files
: [https://github.com/gnuradio/gnuradio/blob/main/gr-filter/lib/rational_resampler_impl.h]


; Block definition
; Block definition
: [https://github.com/gnuradio/gnuradio/blob/master/gr-filter/grc/filter_rational_resampler_xxx.block.yml]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-filter/grc/filter_rational_resampler_xxx.block.yml]

Latest revision as of 13:35, 3 May 2023

Rational resampling polyphase FIR filter.

Either taps or fractional_bw may be specified, but not both.

If neither is specified, a reasonable default, 0.4, is used as the fractional_bw.

This block only works when the output language of the flowgraph is Python.

Parameters

(R): Run-time adjustable

Interpolation
Interpolation factor (integer > 0)
Decimation
Decimation factor (integer > 0)
Taps (R)
Optional filter coefficients (sequence)
Fractional BW
Fractional bandwidth in (0, 0.5), measured at final freq (use 0.4) (float). In GNU Radio 3.8, the default value is 0, which should either be changed to a value 'between' 0 and 0.5; or just removed. Removing the value of fractional bandwidth will cause the block to use the default value of 0.4.

Example Flowgraph

This flowgraph shows a Rational Resampler block changing the sample rate from 960 to 500.

RTTY rcv.png

Source Files

C++ files
[1]
Header files
[2]
Block definition
[3]