Macaulay2 » Documentation
Packages » AlgebraicSplines :: formsList
next | previous | forward | backward | up | index | toc

formsList -- list of powers of (affine) linear forms cutting out a specified list of codimension one faces.

Synopsis

Description

This method returns a list of (affine) linear forms cutting out codimension one faces, raised to the power (r+1).

i1 : V = {{0,0},{1,0},{1,1},{0,1}};
i2 : E = {{0,1},{0,2},{0,3},{1,2},{2,3}};
i3 : formsList(V,E,0)

o3 = {t , t  - t , t , t  - t , t  - t }
       1   0    1   0   0    2   1    2

o3 : List
i4 : S=QQ[x,y];--can specify the polynomial ring to use, and whether to homogenize
i5 : formsList(V,E,0,BaseRing=>S,Homogenize=>false)

o5 = {y, x - y, x, x - 1, y - 1}

o5 : List

Ways to use formsList :

For the programmer

The object formsList is a method function with options.