Patterned Interleaver: Difference between revisions
Jump to navigation
Jump to search
EngineerLife (talk | contribs) |
EngineerLife (talk | contribs) |
||
Line 3: | Line 3: | ||
== Parameters == | == Parameters == | ||
; IO Type | |||
: Supported types are: complex, float, int, short, and byte | |||
; Pattern | ; Pattern | ||
: Vector that represents the interleaving pattern. | : Vector that represents the interleaving pattern. | ||
: For example, the pattern <code>[ 0, 0, 1, 2 ]</code> means to pass one item of data from port 0 twice, then from port 1 once, then from port 2 once, then repeat. | : For example, the pattern <code>[ 0, 0, 1, 2 ]</code> means to pass one item of data from port 0 twice, then from port 1 once, then from port 2 once, then repeat. | ||
; Vector Length | |||
: The vector length for the input stream. | |||
== Example Flowgraph == | == Example Flowgraph == |
Revision as of 18:13, 30 July 2023
Interleave items based on the provided vector.
Parameters
- IO Type
- Supported types are: complex, float, int, short, and byte
- Pattern
- Vector that represents the interleaving pattern.
- For example, the pattern
[ 0, 0, 1, 2 ]
means to pass one item of data from port 0 twice, then from port 1 once, then from port 2 once, then repeat.
- Vector Length
- The vector length for the input stream.
Example Flowgraph
Example 1
An example flowgraph using the default pattern with vector length 1 streams:
An example of the settings field:
An example of the beginning of the output sequence:
The output pattern begins with: 0, 1, 10, 20, 2, 3, 11, 21, 4, 0, 12, 22, ....
Example 2
This example shows a vector length 2 example:
An example of the beginning of the output sequence:
The output pattern for the first stream begins with: 0, 1, 10, 20, 2, 3, 11, 21, 4, 0, 12, 22, ....
The output pattern for the second stream begins with: 1, 2, 11, 21, 3, 4, 12, 22, 5, 0, 13, 23, ....
Source Files
- C++ files
- [1]
- Header files
- [2]
- Public header files
- [3]
- Block definition
- [4]