source: git/Tst/Old/jacobi.tst @ bf9837

fieker-DuValspielwiese
Last change on this file since bf9837 was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 767 bytes
Line 
1//
2// test script for jacob command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),(c,ds);
6r1;
7LIB "lib0";
8"-------------------------------";
9int a=12;
10int b=10;
11int c=4;
12int d=1;
13poly s1=x^a+y^b+z^c+x^(c+3)*y^(d+3)+z^(a-3)*y^(d-1);
14poly s2=6x5+3y6+8z6;
15poly s3=12xyz3+2y3z6;
16ideal i1=jacob(s1);
17i1;
18"-------------------------";
19ideal i2=jacob(s2);
20i2;
21"--------------------------";
22ideal i3=jacob(s3);
23i3;
24"-------------------------";
25matrix m1[3][3]=jacob(i1);
26pmat(m1);
27"---------------------------";
28ideal i10=std(i1);
29i10;
30degree(i10);
31"--------------------------";
32ideal i20=std(i2);
33i20;
34degree(i20);
35"---------------------------";
36ideal i30=std(i3);
37i30;
38degree(i30);
39listvar(all);
40kill r1;
41LIB "tst.lib";tst_status(1);$;
42// jacob von ideal - matrix mit pmat
Note: See TracBrowser for help on using the repository browser.