ElimMat |
Syntax |
ElimMat(N: INT, ElimInd: LIST): MAT ElimMat(W: MAT, ElimInd: LIST): MAT |
Description |
Example |
/**/ ElimMat(3, [2,3]); matrix(QQ, [[0, 1, 1], [1, 1, 1], [0, 0, -1]]) /**/ ElimMat(mat([[1,5,0]]), [2,3]); matrix(QQ, [[0, 1, 1], [1, 5, 0], [0, 0, -1]]) |
See Also |