source: git/Tst/Old/aa.tst @ e706ff

spielwiese
Last change on this file since e706ff was 37cd955, checked in by Hans Schoenemann <hannes@…>, 14 years ago
pagelength removed git-svn-id: file:///usr/local/Singular/svn/trunk@13172 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 540 bytes
Line 
1pagewidth=80;
2ring r= 32003,(x,y,z),lp;
3ideal i = x,y,z,x2z,yxz;
4i;
5i[2..3] = 3,4;
6i;
7matrix m[2][2] = i;
8m;
9m[1..2,1] = 1,2;
10m;
11matrix mm[5][5];
12mm[2..4,2..4] = 1,1,1,1,1,1,1,1,1;
13LIB "lib";
14formmat(mm);
15LIB "tst.lib";tst_status(1);$;
16i = m;
17i;
18m[1,3] = 5;
19LIB "tst.lib";tst_status(1);$;
20i;
21i[5-6] = 3;
22i;
23LIB "tst.lib";tst_status(1);$;
24matrix m[2][2] = x,y,z;
25m;
26ideal i = m;
27i;
28LIB "tst.lib";tst_status(1);$;
29m;
30pause;
31i[2] = y2;
32m[1,2] = 4;
33i;
34m;
35pause;
36m = i;
37m;
38LIB "tst.lib";tst_status(1);$;
39i = m;
40i;
41LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.