diff options
author | tracierenea <tracie.perez@mavs.uta.edu> | 2016-04-07 01:25:00 -0500 |
---|---|---|
committer | tracierenea <tracie.perez@mavs.uta.edu> | 2016-04-07 01:25:00 -0500 |
commit | 48730536db3ebcfd8c7a4f1cc54ac8bd8a866140 (patch) | |
tree | 0f84e7d5a3f52b31092067d797935e3dc6494108 /gr-fec | |
parent | 5abda7a5d3dec6d8dcd47d355248660564d2e56a (diff) |
gr-fec, LDPC: correct the name of the python function called
Diffstat (limited to 'gr-fec')
-rw-r--r-- | gr-fec/python/fec/LDPC/Generate_LDPC_matrix_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fec/python/fec/LDPC/Generate_LDPC_matrix_functions.py b/gr-fec/python/fec/LDPC/Generate_LDPC_matrix_functions.py index 6c55d0b550..c42fee631f 100644 --- a/gr-fec/python/fec/LDPC/Generate_LDPC_matrix_functions.py +++ b/gr-fec/python/fec/LDPC/Generate_LDPC_matrix_functions.py @@ -679,7 +679,7 @@ def getSystematicGmatrix(GenMatrix): if found == False: # push the row of 0s to the bottom, and move the bottom # rows up (sort of a rotation thing) - tempArray = moveRowToBottom(i,tempArray) + tempArray = move_row_to_bottom(i,tempArray) # decrease limit since we just found a row of 0s limit -= 1 # the rows below i are the dependent rows, which we discard |