| LIB "nets.lib";
ring r1=101,(x,y,z),lp;
int a=111111;
int b=222222;
int c=333333;
int d=444444;
intmat M[2][2]=a,b,c,d;
print(M);
==> 111111 222222
==> 333333 444444
netIntMatShort(M);
==> | 111111 222222 |
==> | 333333 444444 |
==>
//
print(M);
==> 111111 222222
==> 333333 444444
netIntMatShort(M,2);
==> | 11... 22... |
==> | 33... 44... |
==>
//
|