Singular

Home Online Manual
Top
Back: getFacetNormals
Forward: getGeneratorsOfSpan
FastBack: quickConeViaNormals
FastForward: fan
Up: cone related functions
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

4.22.4.12 getGeneratorsOfLinealitySpace

Syntax:
getGeneratorsOfLinealitySpace( cone c )
Type:
intmat
Purpose:
generating vectors of the lineality space of the cone
Example:
 
intmat M[5][3]=
1,0,0,
0,1,0,
0,0,1,
-1,0,0,
0,-1,0;
cone c=coneViaRays(M);
intmat L=getGeneratorsOfLinealitySpace(c);
print(L);
==>     -1     0     0
==>      0    -1     0