|  |  D.15.23.8 printMatrix Procedure from librarymodules.lib(see  modules_lib).
 
Example:Usage:
printMatrix(M); or M; M Matrix
Return:
nothing, prints the matrix with degrees of the generators from target and source
 |  | LIB "modules.lib";
ring r;
matrix m[2][2]=x,y3,z,xz;
Matrix M=m;
M;
==> x,y3,
==> z,xz 
==> 
 | 
 
 |