MT Puncture Data Stream
- Updated2023-02-17
- 4 minute(s) read
MT Puncture Data Stream
Punctures a data stream and returns it at a higher rate.
Puncturing is the process of artificially increasing the rate of the input data by selectively deleting certain elements in the input data stream. The positions where the elements are deleted from the input data stream are defined by the puncture pattern matrix. Elements in the input data stream that correspond to values of zero in the puncture pattern matrix are omitted from the data stream output. The rate of the output data stream is given by the following equation:
where the input data stream arrives at a rate Rin and the puncture pattern is a P × Q matrix containing L zeros.
Inputs/Outputs

input data stream
The data stream with a rate to be increased by puncturing. This data stream is usually obtained from the output of a block or convolutional encoder.

puncture pattern
A binary-valued matrix that determines which elements in the input data stream are omitted.
Default value: 1

error in
Error conditions that occur before this node runs.
The node responds to this input according to standard error behavior.
Default value: No error

reset?
A Boolean that determines whether this node uses the stored state information from a previous iteration while puncturing the input data stream in the current iteration.
| TRUE | Clears all previous state information and reinitializes the buffers. |
| FALSE | Uses the stored state information from the previous iteration while puncturing the input data stream in the current iteration. The buffered elements are added to the beginning of the input data stream during the next iteration, prior to the puncturing operation. |
Default value: TRUE

output data stream
The data stream returned by this node, which consists of all elements in the input data stream except those that were deleted during the puncturing operation.

error out
Error information.
The node produces this output according to standard error behavior.
Examples of Puncturing Matrices
| Code Rates (Rout) | Puncture Pattern | Output Data Stream |
|---|---|---|
| 1/2 |
X : 1 Y : 1 |
X1, Y1 |
| 2/3 |
X : 1 0 Y : 1 1 |
X1, Y1, Y2 |
| 3/4 |
X : 1 0 1 Y : 1 1 0 |
X1, Y1, Y2, X3 |
| 5/6 |
X : 1 0 1 0 1 Y : 1 1 0 1 0 |
X1, Y1, Y2, X3, Y4, X5 |
| 7/8 |
X : 1 0 1 0 1 0 1 Y : 1 1 0 1 0 1 0 |
X1, Y1, Y2, X3, Y4, X5, Y6, X7 |
Typically, the puncturing operation occurs in conjunction with the channel encoding operation. In such a case, the number of rows (P) in the puncture pattern matrix must equal the code word length (n) of the mother block/convolutional code. The preceding table shows examples of puncturing matrices for deriving higher rate codes from a mother rate ½ convolutional encoder. The input data stream is assumed to be of the form X1, Y1, X2, Y2, X3, Y3, and so on.
Preparing punctured data for decoding
If you perform convolutional encoding followed by puncturing the data stream returned on the transmit side, you must depuncture the data prior to performing convolutional decoding on the receiving side. In addition, you must call the instance of MT Convolutional Decoder that implements either soft-decision or unquantized Viterbi decoding.