source: git/modules/pcv/pcv.mod @ a47187

spielwiese
Last change on this file since a47187 was a47187, checked in by Mathias Schulze <mschulze@…>, 25 years ago
*mschulze: added pcv git-svn-id: file:///usr/local/Singular/svn/trunk@2768 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 813 bytes
Line 
1module="pcv";
2
3version="$Id: pcv.mod,v 1.1 1998-12-17 11:59:42 mschulze Exp $";
4info="
5LIBRARY: pcv.so  CONVERSION BETWEEN POLYS AND COEF VECTORS
6                 by Mathias Schulze
7                 email: mschulze@mathematik.uni-kl.de
8
9 MinDeg(p);      min deg of monomials of poly p
10 MaxDeg(p);      max deg of monomials of poly p
11 P2CV(l,d0,d1);  list of coef vectors from deg d0 to d1 of polys in list l
12 CV2P(l,d0,d1);  list of polys with coef vectors from deg d0 to d1 in list l
13 Dim(d0,d1);     number of monomials from deg d0 to d1
14 Basis(d0,d1);   list of monomials from deg d0 to d1
15";
16
17cxxsource = pcv/pcv.cc
18
19proc MinDeg(poly) = pcvMinDeg;
20proc MaxDeg(poly) = pcvMaxDeg;
21proc P2CV(list,int,int) = pcvP2CV;
22proc CV2P(list,int,int) = pcvCV2P;
23proc Dim(int,int) = pcvDim;
24proc Basis(int,int) = pcvBasis;
Note: See TracBrowser for help on using the repository browser.