|
4.22.4.10 getEquations
Syntax:
getEquations( cone c )
getEquations( polytope p )
Type:
- intmat
Purpose:
- equations given by the cone
Example:
| intmat M1[2][2]=
1,0,
0,1;
cone c1=coneViaRays(M1);
intmat E1=getEquations(c1);
print(E1);
==>
intmat M2[1][2]=
1,0;
cone c2=coneViaRays(M2);
intmat E2=getEquations(c2);
print(E2);
==> 0 1
|
|