I construct a matrix A and compute its kernel by
A = matrix(GF(2),vectors)
B = A.kernel()
Now I want to convert B to a matrix, such that I can use .nrows() and other matrix-methods, how to do that?
1 | initial version |
I construct a matrix A and compute its kernel by
A = matrix(GF(2),vectors)
B = A.kernel()
Now I want to convert B to a matrix, such that I can use .nrows() and other matrix-methods, how to do that?