NotImplementedError:Echolon form not implemented over "ring of integers modulo 16''. Is this error meanwhile remediated?
Asking for the echelon form of a matrix over Zmod(16)
fails as follows:
sage: a = matrix(Zmod(16), [[1, 1], [1, 1]])
sage: a.echelon_form()
Traceback (most recent call last):
...
NotImplementedError: Echelon form not implemented over 'Ring of integers modulo 16'.
Is this error meanwhile remediated?
This error also occurs when trying to calculate eigenspaces_right
and or right_kernel
of a matrix defined with elements in Zmod(16)
or IntegerRing(16)
.