Skip to content

komm.ConvolutionalCode

Binary convolutional code. It is characterized by a matrix of feedforward polynomials $P(D)$, of shape $k \times n$, and (optionally) by a vector of feedback polynomials $q(D)$, of length $k$. The element in row $i$ and column $j$ of $P(D)$ is denoted by $p_{i,j}(D)$, and the element in position $i$ of $q(D)$ is denoted by $q_i(D)$; they are binary polynomials in $D$. The parameters $k$ and $n$ are the number of input and output bits per block, respectively.

The transfer function matrix (also known as transform-domain generator matrix) $G(D)$ of the convolutional code, of shape $k \times n$, is such that the element in row $i$ and column $j$ is given by $$ g_{i,j}(D) = \frac{p_{i,j}(D)}{q_{i}(D)}, $$ for $i \in [0 : k)$ and $j \in [0 : n)$.

Constraint lengths and related parameters

The constraint lengths of the code are defined by $$ \nu_i = \max \{ \deg p_{i,0}(D), \deg p_{i,1}(D), \ldots, \deg p_{i,n-1}(D), \deg q_i(D) \}, $$ for $i \in [0 : k)$.

The overall constraint length of the code is defined by $$ \nu = \sum_{0 \leq i < k} \nu_i. $$

The memory order of the code is defined by $$ \mu = \max_{0 \leq i < k} \nu_i. $$

Space-state representation

A convolutional code may also be described via the space-state representation. Let $\mathbf{u}_t = (u_t^{(0)}, u_t^{(1)}, \ldots, u_t^{(k-1)})$ be the input block, $\mathbf{v}_t = (v_t^{(0)}, v_t^{(1)}, \ldots, v_t^{(n-1)})$ be the output block, and $\mathbf{s}_t = (s_t^{(0)}, s_t^{(1)}, \ldots, s_t^{(\nu-1)})$ be the state, all defined at time instant $t$. Then, $$ \begin{aligned} \mathbf{s}_{t+1} & = \mathbf{s}_t A + \mathbf{u}_t B, \\ \mathbf{v}_{t} & = \mathbf{s}_t C + \mathbf{u}_t D, \end{aligned} $$ where $A$ is the $\nu \times \nu$ state matrix, $B$ is the $k \times \nu$ control matrix, $C$ is the $\nu \times n$ observation matrix, and $D$ is the $k \times n$ transition matrix.

Tables of convolutional codes

The tables below LC04, Sec. 12.3 lists optimal convolutional codes with parameters $(n,k) = (2,1)$ and $(n,k) = (3,1)$, for small values of the overall constraint length $\nu$.

Parameters $(n, k, \nu)$ Transfer function matrix $G(D)$
$(2, 1, 1)$ [[0o1, 0o3]]
$(2, 1, 2)$ [[0o5, 0o7]]
$(2, 1, 3)$ [[0o13, 0o17]]
$(2, 1, 4)$ [[0o27, 0o31]]
$(2, 1, 5)$ [[0o53, 0o75]]
$(2, 1, 6)$ [[0o117, 0o155]]
$(2, 1, 7)$ [[0o247, 0o371]]
$(2, 1, 8)$ [[0o561, 0o753]]
Parameters $(n, k, \nu)$ Transfer function matrix $G(D)$
$(3, 1, 1)$ [[0o1, 0o3, 0o3]]
$(3, 1, 2)$ [[0o5, 0o7, 0o7]]
$(3, 1, 3)$ [[0o13, 0o15, 0o17]]
$(3, 1, 4)$ [[0o25, 0o33, 0o37]]
$(3, 1, 5)$ [[0o47, 0o53, 0o75]]
$(3, 1, 6)$ [[0o117, 0o127, 0o155]]
$(3, 1, 7)$ [[0o255, 0o331, 0o367]]
$(3, 1, 8)$ [[0o575, 0o623, 0o727]]

For more details, see JZ15 and LC04, Chs. 11, 12.

__init__()

Constructor for the class.

Parameters:

  • feedforward_polynomials (Array2D[BinaryPolynomial, int])

    The matrix of feedforward polynomials $P(D)$, which is a $k \times n$ matrix whose entries are either binary polynomials or integers to be converted to the former.

  • feedback_polynomials (Optional[Array1D[BinaryPolynomial, int]])

    The vector of feedback polynomials $q(D)$, which is a $k$-vector whose entries are either binary polynomials or integers to be converted to the former. The default value corresponds to no feedback, that is, $q_i(D) = 1$ for all $i \in [0 : k)$.

Examples:

The convolutional code with encoder depicted in the figure below has parameters $(n, k, \nu) = (2, 1, 6)$; its transfer function matrix is given by $$ G(D) = \begin{bmatrix} D^6 + D^3 + D^2 + D + 1 & D^6 + D^5 + D^3 + D^2 + 1 \end{bmatrix}, $$ yielding feedforward_polynomials = [[0b1001111, 0b1101101]] = [[0o117, 0o155]] = [[79, 109]].

Convolutional encoder for (2, 1, 6) code.

>>> code = komm.ConvolutionalCode(feedforward_polynomials=[[0o117, 0o155]])
>>> (code.num_output_bits, code.num_input_bits, code.overall_constraint_length)
(2, 1, 6)

The convolutional code with encoder depicted in the figure below has parameters $(n, k, \nu) = (3, 2, 7)$; its transfer function matrix is given by $$ G(D) = \begin{bmatrix} D^4 + D^3 + 1 & D^4 + D^2 + D + 1 & 0 \\ 0 & D^3 + D & D^3 + D^2 + 1 \end{bmatrix}, $$ yielding feedforward_polynomials = [[0b11001, 0b10111, 0b00000], [0b0000, 0b1010, 0b1101]] = [[0o31, 0o27, 0o00], [0o00, 0o12, 0o15]] = [[25, 23, 0], [0, 10, 13]].

Convolutional encoder for (3, 2, 7) code.

>>> code = komm.ConvolutionalCode(feedforward_polynomials=[[0o31, 0o27, 0o00], [0o00, 0o12, 0o15]])
>>> (code.num_output_bits, code.num_input_bits, code.overall_constraint_length)
(3, 2, 7)

The convolutional code with feedback encoder depicted in the figure below has parameters $(n, k, \nu) = (2, 1, 4)$; its transfer function matrix is given by $$ G(D) = \begin{bmatrix} 1 & \dfrac{D^4 + D^3 + 1}{D^4 + D^2 + D + 1} \end{bmatrix}, $$ yielding feedforward_polynomials = [[0b10111, 0b11001]] = [[0o27, 0o31]] = [[23, 25]] and feedback_polynomials = [0o27].

Convolutional encoder for (2, 1, 4) feedback code.

>>> code = komm.ConvolutionalCode(feedforward_polynomials=[[0o27, 0o31]], feedback_polynomials=[0o27])
>>> (code.num_output_bits, code.num_input_bits, code.overall_constraint_length)
(2, 1, 4)

num_input_bits property

The number of input bits per block, $k$.

num_output_bits property

The number of output bits per block, $n$.

constraint_lengths property

The constraint lengths $\nu_i$ of the code, for $i \in [0 : k)$. This is a $k$-array of integers.

overall_constraint_length property

The overall constraint length $\nu$ of the code.

memory_order property

The memory order $\mu$ of the code.

feedforward_polynomials property

The matrix of feedforward polynomials $P(D)$ of the code. This is a $k \times n$ array of binary polynomials.

feedback_polynomials property

The vector of feedback polynomials $q(D)$ of the code. This is a $k$-array of binary polynomials.

transfer_function_matrix property

The transfer function matrix $G(D)$ of the code. This is a $k \times n$ array of binary polynomial fractions.

finite_state_machine property

The finite-state machine of the code.

state_matrix property

The state matrix $A$ of the state-space representation. This is a $\nu \times \nu$ array of integers in $\{ 0, 1 \}$.

control_matrix property

The control matrix $B$ of the state-space representation. This is a $k \times \nu$ array of integers in $\{ 0, 1 \}$.

observation_matrix property

The observation matrix $C$ of the state-space representation. This is a $\nu \times n$ array of integers in $\{ 0, 1 \}$.

transition_matrix property

The transition matrix $D$ of the state-space representation. This is a $k \times n$ array of integers in $\{ 0, 1 \}$.