Home Online Manual
Top
Back: linealitySpace
Forward: polytopeViaInequalities
FastBack:
FastForward:
Up: gfan_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.13.1.31 negatedCone

Procedure from library gfan.lib (see gfan_lib).

Usage:
negatedCone(c); c cone

Return:
cone, the negative of c

Example:
 
LIB "gfan.lib";
intmat M[2][2]=
1,0,
0,1;
cone c=coneViaPoints(M);
cone cn=negatedCone(c);
print(rays(cn));
==> -1, 0,
==>  0,-1