|
D.15.27.12 netIntVectorShort
Procedure from library nets.lib (see nets_lib).
- Usage:
- netIntVectorShort(V); V int vector
- Assume:
- V is a int vector
- Return:
- visual presentation of V, only the first digits of each entry
- 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;
intvec V=a,b,c,d;
netIntVectorShort(V,4);
==> | 1111... |
==> | 2222... |
==> | 3333... |
==> | 4444... |
==>
|
|