|  |  D.13.1.47 fVector Procedure from librarygfan.lib(see  gfan_lib).
 
Example:Usage:
fVector(f); f fan
Return:
bigintmat, the f-Vector of f
 |  | LIB "gfan.lib";
fan f=emptyFan(2);
fVector(f);
==> 
intmat M[2][2]=1,0,0,1;
cone c=coneViaPoints(M);
insertCone(f,c);
fVector(f);
==> 1,2,1
 | 
 
 |