I have a matrix :: [[Int]]
whose elements are all either zero or one.
How can I efficiently implement rref
in GF(2)?
If LU decomposition can be used to calculate rref(matrix) in GF(2), any example or elaboration on the algorithm would be greatly appreciated.