How to find facets of convex hull for 5 or higher dimension
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi, How to find facets of convexhull .Is there any way to get equation of facet as output interms of variables?
Thanks, Sita
댓글 수: 0
답변 (2개)
Image Analyst
2015년 1월 21일
To get the vertices, you can use convhulln():
K = convhulln(X) returns the indices K of the points in X that comprise the facets of the convex hull of X. X is an m-by-n array representing m points in N-dimensional space. If the convex hull has p facets then K is p-by-n.
Now, how to turn a set of vertices that define a hyperplane into an analytical equation for that hyperplane , I don't have any idea.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Bounding Regions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!