Skip to content

Commit

Permalink
Merge pull request #42 from burgholzer/patch-1
Browse files Browse the repository at this point in the history
🩹 fix invalid escape sequence
  • Loading branch information
lucasberent authored Aug 5, 2024
2 parents cb462f0 + a21de0c commit 8db9a75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ldpc/mod2.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def reduced_row_echelon(matrix):
return [reduced_row_echelon_form, matrix_rank, transform_matrix_rows, transform_matrix_columns]

def nullspace(matrix):
"""
r"""
Computes the nullspace of the matrix M. Also sometimes referred to as the kernel.
All vectors x in the nullspace of M satisfy the following condition::
Expand Down Expand Up @@ -443,4 +443,4 @@ def row_basis(matrix):

# H=np.array([[1,1,0],[0,1,1],[1,0,1]])

print(codewords(H))
print(codewords(H))

0 comments on commit 8db9a75

Please sign in to comment.