No BSD License  

Highlights from
VERT2CON - vertices to constraints

5.0

5.0 | 4 ratings Rate this file 18 Downloads (last 30 days) File Size: 1.92 KB File ID: #7895
image thumbnail

VERT2CON - vertices to constraints

by Michael Kleder

 

22 Jun 2005 (Updated 11 Jul 2005)

Create inequality constraints to bound the convex hull of the given points.

| Watch this File

File Information
Description

VERT2CON - convert a set of points to the set of inequality constraints which most tightly contain the points; i.e., create constraints to bound the convex hull of the given points

[A,b] = vert2con(V)

V = a set of points, each ROW of which is one point
A,b = a set of constraints such that A*x <= b defines the region of space enclosing the convex hull of the given points

For n dimensions:
V = p x n matrix (p vertices, n dimensions)
A = m x n matrix (m constraints, n dimensions)
b = m x 1 vector (m constraints)

NOTES:
NOTES:
(1) In higher dimensions, redundant constraints can appear. This program detects redundancy at 6 digits of precision (per dimension), then returns the unique constraints.
(2) See companion function CON2VERT.
(3) ver 1.0: initial version, June 2005.
(4) ver 1.1: enhanced redundancy checks, July 2005
(5) Written by Michael Kleder

Acknowledgements
This submission has inspired the following:
Representing Polyhedral Convex Hulls by Vertices or (In)Equalities
MATLAB release MATLAB 7.0.1 (R14SP1)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (5)
20 Jun 2008 GagoX GagoX

Thanx Michael,

great program! and very elegantly coded as well.

10 Jul 2008 Vishal Narula

nice work..keep it up!

04 Feb 2011 Sean de

Excellent program!
Very useful for calculating 3-dimensional convex masks.

A few speedups for newer versions replacing REPMAT with BSXFUN:
V = bsxfun(@minus,V,c);

and in the example:
p = bsxfun(@le,A*p,b);

11 Feb 2011 Chris Z.  
17 Apr 2011 Jay Berger

Nice program. How do I enforce constraints for points to lie only on the boundary of the convex hull?

Please login to add a comment or rating.
Updates
11 Jul 2005

Enhanced redundancy checks.

Tag Activity for this File
Tag Applied By Date/Time
optimization Michael Kleder 22 Oct 2008 07:51:00
polygon Michael Kleder 22 Oct 2008 07:51:00
polyhedron Michael Kleder 22 Oct 2008 07:51:00
polytope Michael Kleder 22 Oct 2008 07:51:00
constraint Michael Kleder 22 Oct 2008 07:51:00
hull Michael Kleder 22 Oct 2008 07:51:00
inequality Michael Kleder 22 Oct 2008 07:51:00
convex Michael Kleder 22 Oct 2008 07:51:00
polygon Peter Simon 09 Aug 2010 12:47:12

Contact us at files@mathworks.com