diff options
author | Josh Morman <jmorman@gnuradio.org> | 2021-11-24 12:32:44 -0500 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-11-24 14:41:53 -0500 |
commit | c747e37751546159f30a2a1296dc4099fe132a53 (patch) | |
tree | 9b1b9851c9c98d1a0082cac5a65ba9439e5db776 /gr-fec/python/fec/LDPC/Generate_LDPC_matrix.py | |
parent | 3cecf9268b15bb0e9e2fedaeb2528bd3038beee6 (diff) |
fec: pep8 formatting
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
Diffstat (limited to 'gr-fec/python/fec/LDPC/Generate_LDPC_matrix.py')
-rw-r--r-- | gr-fec/python/fec/LDPC/Generate_LDPC_matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fec/python/fec/LDPC/Generate_LDPC_matrix.py b/gr-fec/python/fec/LDPC/Generate_LDPC_matrix.py index 4e0c622e15..b745815d33 100644 --- a/gr-fec/python/fec/LDPC/Generate_LDPC_matrix.py +++ b/gr-fec/python/fec/LDPC/Generate_LDPC_matrix.py @@ -41,7 +41,7 @@ n = 200 # number of columns, corresponds to codeword length p = 3 # column weight q = 5 # row weight -parity_check_matrix = LDPC_matrix(n_p_q = [n, p, q]) +parity_check_matrix = LDPC_matrix(n_p_q=[n, p, q]) # Richardson and Urbanke's preprocessing method requires a full rank # matrix to start. The matrices generated by the |