|
D.4.15.11 printModule
Procedure from library modules.lib (see modules_lib).
- Return:
- nothing, prints the Module
Example:
| LIB "modules.lib";
ring r;
matrix m[2][2]=x,y2,z,xz;
Matrix M=m;
M;
==> {1} {2}
==> {0} x y2
==> {0} z xz
==>
Module N=image(M);
N;
==> image | x y2 |
==> | z xz |
==>
==>
|
|