From a21de0c056cfa0b81e51a79ac94b2a7b9702d82e Mon Sep 17 00:00:00 2001 From: Lukas Burgholzer Date: Tue, 2 Jul 2024 16:36:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20fix=20invalid=20escape=20sequenc?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ldpc/mod2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ldpc/mod2.py b/src/ldpc/mod2.py index f9d1741..ae66169 100755 --- a/src/ldpc/mod2.py +++ b/src/ldpc/mod2.py @@ -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:: @@ -443,4 +443,4 @@ def row_basis(matrix): # H=np.array([[1,1,0],[0,1,1],[1,0,1]]) - print(codewords(H)) \ No newline at end of file + print(codewords(H))