|
D.16.2.10 hStarVector
Syntax:
Polymake::hStarVector( polytope p )
Type:
- intvec
Purpose:
- the h*-vector of p.
Example:
| LIB"polymake.lib";
intmat M[6][4]=1,1,1,2, 1,-1,-1,-2, 1,1,0,0, 1,-1,0,0, 1,0,1,0, 1,0,-1,0;
polytope p = polytopeViaPoints(M);
Polymake::hStarVector(p);
|
|