The class is for matrix over integer ring.It is subclass of Matrix.
compute hermite normal form(HNF).
operator | explanation |
M * N | Return the product of matrices M and N. N must be matrices,vector or integer. |
M / d | Return the division of M by d. d must be integer unit, 1 or -1. |
M % d | Return M modulo d. d must be nonzero integer. |
(other operation is defined Matrix)