|  |  D.13.1.22 generatorsOfSpan Procedure from librarygfan.lib(see  gfan_lib).
 
Example:Usage:
generatorsOfSpan(c); c cone
Return:
bigintmat, generators of the span of c
 |  | LIB "gfan.lib";
intmat M[3][5]=
1,0,0,0,0,
0,1,0,0,0,
0,0,1,0,0;
cone c=coneViaPoints(M);
bigintmat S=generatorsOfSpan(c);
print(S);
==> -1, 0, 0,0,0,
==>  0,-1, 0,0,0,
==>  0, 0,-1,0,0
 | 
 
 |