edges
삼각분할 모서리
설명
예제
2차원 삼각분할의 모서리 찾기
2차원 삼각분할 데이터를 불러오고 삼각분할 표현을 만듭니다.
P = [2.5 8.0; 6.5 8.0; 2.5 5.0; 6.5 5.0; 1.0 6.5; 8.0 6.5]; T = [5 3 1; 3 2 1; 3 4 2; 4 6 2]; TR = triangulation(T,P);
삼각분할에서 모서리의 시작 및 끝 꼭짓점 식별 번호를 찾습니다.
E = edges(TR)
E = 9×2
1 2
1 3
1 5
2 3
2 4
2 6
3 4
3 5
4 6
삼각분할에서 첫 번째 점의 좌표를 정의합니다. 그런 다음 첫 번째 점과 모서리를 공유하는 세 꼭짓점(두 번째, 세 번째 및 다섯 번째 꼭짓점)의 좌표를 정의합니다.
startVert = TR.Points(1,:); endVert = TR.Points([2 3 5],:);
삼각분할을 플로팅합니다. 첫 번째 꼭짓점을 녹색으로 플로팅하고, 모서리에 있는 연결 점들을 빨간색으로 플로팅합니다.
triplot(TR) hold on plot(startVert(1,1),startVert(1,2),'g.','MarkerSize',20) plot(endVert(:,1),endVert(:,2),'r.','MarkerSize',20) hold off
입력 인수
TR
— 삼각분할 표현
스칼라 triangulation 객체
삼각분할 표현으로, 스칼라 triangulation
또는 delaunayTriangulation
객체로 지정됩니다.
데이터형: triangulation
| delaunayTriangulation
확장 기능
스레드 기반 환경
MATLAB®의 backgroundPool
을 사용해 백그라운드에서 코드를 실행하거나 Parallel Computing Toolbox™의 ThreadPool
을 사용해 코드 실행 속도를 높일 수 있습니다.
이 함수는 스레드 기반 환경을 완전히 지원합니다. 자세한 내용은 스레드 기반 환경에서 MATLAB 함수 실행하기 항목을 참조하십시오.
버전 내역
R2013a에 개발됨
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)