Alternately select elements from two input vectors to generate output vector
Sequence Operations
The Interlacer block accepts two inputs that have the same vector size, complexity,
and sample time. It produces one output vector by alternating elements from the first
input (labeled O
for odd) and from the second input (labeled
E
for even) . As a result, the output vector size is twice that
of either input. The output vector has the same complexity and sample time of the
inputs.
Both input ports accept scalars or column vectors with the same number of elements.
The block accepts the data types int8
, uint8
,
int16
, uint16
, int32
,
uint32
, boolean
, single
,
double
, and fixed-point. The output signal inherits its data type
from the input signal.
This block can be useful for combining in-phase and quadrature information from separate vectors into a single vector.
If the two input vectors have the values [1; 2; 3; 4]
and
[5; 6; 7; 8]
, then the output vector is
[1; 5; 2; 6; 3; 7; 4; 8]
.