Repeat: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:
== 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 sine wave with each value being repeated 5 times, compared to the non-repeated original.


== Source Files ==
[[File:Repeat-ex.png|500px]]


; C++ files
[[File:Repeat-ex-2.png|500px]]
: [https://github.com/gnuradio/gnuradio TODO]


; Header files
== Source Files ==
: [https://github.com/gnuradio/gnuradio TODO]
 
; Public header files
: [https://github.com/gnuradio/gnuradio TODO]
 
; Block definition
: [https://github.com/gnuradio/gnuradio TODO]

Revision as of 05:01, 21 July 2019

Repeat each input Interpolation times

Parameters

(R): Run-time adjustable

Interpolation (R)
Number of times to repeat the input, acting as the interpolation factor.

Example Flowgraph

This flowgraph shows a sine wave with each value being repeated 5 times, compared to the non-repeated original.

Repeat-ex.png

Repeat-ex-2.png

Source Files