MT Convolutional Decoder (Viterbi Soft Decision, Generator Matrix)
- Updated2023-02-17
- 5 minute(s) read
MT Convolutional Decoder (Viterbi Soft Decision, Generator Matrix)
Performs Viterbi soft decision decoding on a convolutionally encoded bit stream using a custom generator matrix.
.png?_LANG=enus)
Inputs/Outputs

input integers
Bit metrics for quantized demodulated BPSK symbol data. These demodulated BPSK symbols are quantized to nsoft bits of precision, such that an integer value of 0 represents a strong logic 0 and a value of 2nsoft represents a strong logic 1.
For higher-order M-PSK/QAM schemes, convert the I/Q symbol values into corresponding quantized bit metrics using a suitable algorithm/heuristic.
Default value: 1

generator matrix
The generator connection polynomial matrix that sets the convolutional feedforward node connections in octal format.
The convolutional node is modeled as a linear feedforward shift register arrangement consisting of k rows with K-1 shift registers per row, where k denotes the data word length and K denotes the constraint length. If aij {0 ≤ i ≤ n-1, 0 ≤ j ≤ k-1} denotes a particular element in the generator matrix, the row index i corresponds to the convolutional node output yi that is affected by this element, while the column index j corresponds to the jth row in the k row shift register arrangement. Thus aij specifies how the K bits in the jth row of the feedforward shift register matrix affects the ith output of the convolutional node.
For a rate of 2/3, the generator matrix is specified as follows:
The matrix on the right represents the elements in octal format. Zeros are padded at the end of the corresponding code generator sequences such that their total length is a multiple of three digits. The following diagram depicts the rate 2/3 convolutional node corresponding to the previously mentioned generator matrix, with a constraint length equal to 4. In the following diagram, D represents a shift register or memory element.
Here, yij, 0 ≤ j ≤ n-1 denotes the jth output of this node, in the ith instance.
Default value:

constraint length
The maximum number of encoded bits that can be affected by a single input bit. This value represents (1 + maximal memory order), where maximal memory order refers to the length of the longest shift register chain in the convolutional encoder.
Default value: 3

initial state
The initial parent state for the decode operation. When reset? is set to TRUE, the trellis structure is set to this state, thereby initializing the Viterbi decoding operation. On the first call to this node, and thereafter when reset? is set to FALSE, the survivor state from the previous iteration is used to continue performing Viterbi decoding and this parameter is ignored.
Default value: 0

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

traceback depth
The number of trellis stages used in the Viterbi decoding process.
Default value: 15

soft decision bits
The number of bits used for quantizing the BPSK modulated symbols to integers.
Default value: 1

reset?
A Boolean that determines whether the internal state of the decoder is cleared.
TRUE |
Clears any buffered bits from previous iterations. Also initializes the Viterbi algorithm to start decoding from initial state. The relationship of the length of output bit stream,
Lout, to the length of input bit stream,
Lin, is described by the following equation:
Lout = k × [floor(Lin/n) - D] where k is the input data word length, n is the output data word length, and D is the decoder traceback depth in symbols. |
FALSE | Continues decoding from the previous iteration. The length of output bit stream is given by the following equation:
Lout = k × floor(Lin/n). |
- Append max(D,K-1)×k zeros to the end of the message prior to performing convolutional encoding. Here k represents the message word length.
- Append D×n zeros to the end of the encoded bit stream prior to calling MT Convolutional Decoder. Here, D is the traceback depth employed in the convolutional decoder, and n is the code word length.
Default value: TRUE

output bit stream
Bit sequence decoded by this node.

final state
The value for the k(K-1) shift registers as the right-aligned (least significant) k(K-1) bits when this node completes execution, where K is the constraint length and k is the data word length in bits.

error out
Error information.
The node produces this output according to standard error behavior.