source: git/Tst/Old/mino.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: 592 bytes
Line 
1//
2// test script for minor command
3//
4ring r1 = 32003,(x,y,z),(c,dp);
5r1;
6LIB "lib0";
7"-------------------------------";
8matrix m1[3][3]=maxideal(2);
9pmat(m1);
10minor(m1,3);
11"---------------------------------";
12ring r2=0,(x(1..9)),(dp);
13matrix m2[3][3]=maxideal(1);
14pmat(m2);
15minor(m2,2);
16"---------------------------------";
17ring r3=0,(x(1..64)),ds;
18matrix m3[8][8]= maxideal(1);
19pmat(m3);
20minor(m3,1);
21"----------------------------------";
22matrix m4[8][8]=maxideal(2);
23pmat(m4);
24minor(m4,1);
25"----------------------------------";
26listvar(all);
27kill r1,r2,r3;
28LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.