source: git/Tst/Old/wedg.tst @ b35b93

spielwiese
Last change on this file since b35b93 was b35b93, checked in by Olaf Bachmann <obachman@…>, 26 years ago
This commit was generated by cvs2svn to compensate for changes in r1396, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@1397 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 488 bytes
Line 
1//
2// test script for wedge command
3//
4pagelength = 10000;
5ring r1 = 0,(x,y,z),ds;
6r1;
7"--------------------------------";
8matrix m1[4][4]=1,2,3,4,-1,2,0,5,2,1,1,1,0,2,2,2;
9LIB "lib0";
10pmat(m1);
11pmat(wedge(m1,2));
12"--------------------------------";
13matrix m2[3][3]=x2,y4,z4,x4,x,y,z,0,1;
14pmat(m2);
15int a=3;
16pmat(wedge(m2,a));
17"-------------------------------";
18matrix m3[3][3]=1,1,2,2,1,1,2,2,1;
19pmat(m3);
20pmat(wedge(m3,2));
21"--------------------------------";
22listvar(all);
23kill r1;
24$;
Note: See TracBrowser for help on using the repository browser.