I want to get halfspace representation A*x <= b
, given the vertices of a polytope either python or Matlab.
Let's say vertices = [2 -2; 2 2; -10 2; -10 -2];
are the vertices, I used two different libraries and give two different answers, Not sure, why those give different answers.
Using https://github.com/stephane-caron/pypoman,
from numpy import array from pypoman import compute_polytope_halfspaces vertices = map(array, [[2,-2],[2, 2], [-10, 2], [-10, -2]]) A, b = compute_polytope_halfspaces(vertices) print(A) print(b)
Output :
A = [[ -0.00000000e+00 -1.00000000e+00] [ -1.00000000e+00 -0.00000000e+00] [ 4.93432455e-17 1.00000000e+00] [ 1.00000000e+00 -0.00000000e+00]] b = [ 2. 10. 2. 2.]
Using Multi-Parametric Toolbox 3 (http://people.ee.ethz.ch/~mpt/3/) (Matlab)
vertices = [2 -2; 2 2; -10 2; -10 -2]; Xc = Polyhedron(vertices);
Output:
>> Xc.A ans = 0 -0.4472 0.4472 -0.0000 0 0.4472 -0.0995 -0.0000 >> Xc.b ans = 0.8944 0.8944 0.8944 0.9950
Anything helps to understand why this is happening really appreciate
Using the Python package
polytope
, a halfspace representation of a convex polytope can be computed from the polytope's vertices as follows:From vertex representation to halfspace representation
The halfspace representations given in the question represent the same polytope
The question used two different software packages, and each of these gives a different halfspace representation. As checked with the code below, these two halfspace representations represent the same polytope. The code also shows that they equal the answer obtained above using the Python package
polytope
.The above Python code works with
polytope
version 0.2.3.The package
polytope
can be installed from the Python Package Index (PyPI) using the package installerpip
: