Top
Back: dimension
Forward: equations
FastBack:
FastForward:
Up: gfan_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.13.2.17 dualCone

Procedure from library gfan.lib (see gfan_lib).

Usage:
dualCone(c); c cone

Return:
cone, the dual of c

Example:
 
LIB "gfan.lib";
intmat M1[2][2]=
1,0,
0,1;
cone c1=coneViaPoints(M1);
cone d1=dualCone(c1);
d1;
==> AMBIENT_DIM
==> 2
==> INEQUALITIES
==> 0,1,
==> 1,0
==> LINEAR_SPAN
==> 
==> 
print(rays(d1));
==> 1,0,
==> 0,1
intmat M2[2][2]=
1,1,
0,1;
cone c2=coneViaPoints(M2);
cone d2=dualCone(c2);
d2;
==> AMBIENT_DIM
==> 2
==> INEQUALITIES
==> 0,1,
==> 1,1
==> LINEAR_SPAN
==> 
==> 
print(rays(d2));
==>  1,0,
==> -1,1


Top Back: dimension Forward: equations FastBack: FastForward: Up: gfan_lib Top: Singular Manual Contents: Table of Contents Index: Index About: About this document
            User manual for Singular version 4.3.1, 2022, generated by texi2html.