Deinterleave: Difference between revisions
Jump to navigation
Jump to search
(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...") |
No edit summary |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Block Docs]] | [[Category:Block Docs]] | ||
Deinterleave an input block of samples into N outputs. | |||
This block deinterleaves blocks of samples. For each output connection, the input stream will be deinterleaved successively to the output connections. | |||
By default, the block deinterleaves a single input to each output. | |||
blocksize = 1 | |||
connections = 2 | |||
input = [a, b, c, d, e, f, g, h] | |||
output[0] = [a, c, e, g] | |||
output[1] = [b, d, f, h] | |||
blocksize = 2 | |||
connections = 2 | |||
input = [a, b, c, d, e, f, g, h] | |||
output[0] = [a, b, e, f] | |||
output[1] = [c, d, g, h] | |||
See also [[Interleave]]. | |||
== Parameters == | == Parameters == | ||
; | ; Num Streams : Total number of output ports | ||
: | |||
; | ; Block size: Number of items to output before switching to the next output | ||
: | |||
; Vector length : Number of samples in a vector item | |||
== Example Flowgraph == | == Example Flowgraph == | ||
[[File:Deinterleave.png]] | |||
<p>This flowgraph can be downloaded from [[Media:Block_deinterleave.grc]].</p> | |||
== Source Files == | == Source Files == | ||
; C++ files | ; C++ files | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-blocks/lib/deinterleave_impl.cc] | ||
; Header files | ; Header files | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-blocks/lib/deinterleave_impl.h] | ||
; Public header files | ; Public header files | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-blocks/include/gnuradio/blocks/deinterleave.h] | ||
; Block definition | ; Block definition | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-blocks/grc/blocks_deinterleave.block.yml] |
Latest revision as of 14:40, 4 May 2025
Deinterleave an input block of samples into N outputs.
This block deinterleaves blocks of samples. For each output connection, the input stream will be deinterleaved successively to the output connections. By default, the block deinterleaves a single input to each output.
blocksize = 1 connections = 2 input = [a, b, c, d, e, f, g, h] output[0] = [a, c, e, g] output[1] = [b, d, f, h]
blocksize = 2 connections = 2 input = [a, b, c, d, e, f, g, h] output[0] = [a, b, e, f] output[1] = [c, d, g, h]
See also Interleave.
Parameters
- Num Streams
- Total number of output ports
- Block size
- Number of items to output before switching to the next output
- Vector length
- Number of samples in a vector item
Example Flowgraph
This flowgraph can be downloaded from Media:Block_deinterleave.grc.
Source Files
- C++ files
- [1]
- Header files
- [2]
- Public header files
- [3]
- Block definition
- [4]