|  |  D.14.5.4 netBigIntMatShort Procedure from librarynets.lib(see  nets_lib).
 
Example:Usage:
netBigIntMatShort(M); M bigint matrix
 
Assume:
M is a bigintmatrix
Return:
visual presentation of M, only the first digits of each entry
Theory:
A Singular object is converted into a character array (a Net) for on screen printing.
 |  | LIB "nets.lib";
ring r1=101,(x,y,z),lp;
bigint a=1111111111;
bigint b=2222222222;
bigint c=3333333333;
bigint d=4444444444;
bigintmat M[2][2]=a,b,c,d;
netBigIntMatShort(M);
==> | 1111111111 2222222222 |
==> | 3333333333 4444444444 |
==> 
 | 
 
 |