Borrar filtros
Borrar filtros

point in convex hull?

62 visualizaciones (últimos 30 días)
Noe alvarado
Noe alvarado el 23 de Mzo. de 2012
how compute if a point point is inside the convex hull ?

Respuesta aceptada

Friedrich
Friedrich el 23 de Mzo. de 2012
Hi,
I would use convhull and inpolygon:
xx = -1:.05:1; yy = abs(sqrt(xx));
[x,y] = pol2cart(xx,yy);
k = convhull(x,y);
hold on
plot(x(k),y(k),'r-',x,y,'b+')
x_test = rand(10,1);
y_test = rand(10,1);
IN = inpolygon(x_test,y_test,x(k),y(k))
plot(x_test(IN),y_test(IN),'g*',x_test(~IN),y_test(~IN),'y*')
hold off
  2 comentarios
Noe alvarado
Noe alvarado el 23 de Mzo. de 2012
thanks for your answer, but it can work in high dimension?
I'm vorking with points in high dimension (4,5,6..)
Friedrich
Friedrich el 23 de Mzo. de 2012
This wont work in higher dimensions. You have to do some smart geometry stuff to get the information you like. you can use convhulln to get the facets of your convex hull and also the corners (x_i, i = 1..m). After that try to get coefficients a_i > 0 so that
sum_i x_i*a_i = v where sum_i a_i = 1 (basically that's the definition of the convex hull). (v is the vector you like to know if its inside or outside of the convex hull). Finding one solution for the system of equations is easy, but the condition that the sum over the coefficients gives 1 is pretty tricky. I don't know if there is an easy way to get solve this.
Seems more like a mathematical question rather than a MATLAB question for me.
If you know an algorithm come back and ask how to implement/use this in MATLAB. But first you need to know how to check this in theory before doing it in MATLAB.

Iniciar sesión para comentar.

Más respuestas (1)

Matt Kindig
Matt Kindig el 23 de Mzo. de 2012
There is a file on the File Exchange called 'inhull'. I have used it for precisely this purpose.
  2 comentarios
Noe alvarado
Noe alvarado el 12 de Abr. de 2012
thanks
Noe alvarado
Noe alvarado el 12 de Abr. de 2012
thanks

Iniciar sesión para comentar.

Categorías

Más información sobre Bounding Regions en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by