Home Online Manual
Top
Back: facets
Forward: generatorsOfSpan
FastBack: coneViaInequalities
FastForward: fan
Up: cone related functions
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

4.22.3.15 generatorsOfLinealitySpace

Syntax:
generatorsOfLinealitySpace( cone c )
Type:
bigintmat
Purpose:
generating vectors of the lineality space of the cone
Example:
 
LIB"gfanlib.so";
intmat M[5][3]=
1,0,0,
0,1,0,
0,0,1,
-1,0,0,
0,-1,0;
cone c=coneViaPoints(M);
bigintmat L=generatorsOfLinealitySpace(c);
print(L);
==> -1, 0,0,
==>  0,-1,0