nzmath.matrix
The class is for square matrix. It is a subclass of Matrix.
row and column must be a positive integer, and assuming row must be equal to column.
compo must be a list form.
In general, given matrix size unspecified, you should call createMatrix for your profit.
Return commutator defined as [M, N] = M * N - N * M .
return L and U s.t. M == L * U:
operator | explanation |
M ** c | Return the c-th power of matrices M. |