|
4.23.3.13 linspace
Syntax:
linspace( cone c )
Type:
- bigintmat
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=coneViaPoints(M);
bigintmat L=linspace(c);
print(L);
==> -1, 0, 0
==> 0, -1, 0
|
|