up previous next
TVecPoints    --    points associated to type vector


Syntax
TVecToHF(TV: LIST): TAGGED

Description
This function return the points associated to the type vector TV.

See TVecFromHF .

Example
/**/  Use P ::= QQ[x,y,z,t];
/**/  HF := HilbertFn(P/Ideal(x, y^3, z^2-t*x));  HF;
/**/  TV := TVecFromHF(HF);  TV;
/**/  Pts := TVecPoints(TV);  indent(Pts);
[
  [0,  0,  0,  1],
  [0,  0,  1,  1],
  [0,  0,  2,  1],
  [0,  0,  3,  1],
  [0,  1,  0,  1],
  [0,  1,  1,  1]
]

See Also