|
D.14.5.9 netIntMat
Procedure from library nets.lib (see nets_lib).
- Usage:
- netIntMat(M); M int matrix
- Assume:
- M is a int matrix
- Return:
- visual presentation of M
- Theory:
- A Singular object is converted into a character array (a Net) for on screen printing.
Example:
| 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;
netIntMat(M);
==> | 111111 222222 |
==> | 333333 444444 |
==>
|
|