How do I graph this plane with three points?
조회 수: 1 (최근 30일)
이전 댓글 표시
How do I graph the plane that contains the points P1=(1,2,3), P2=(1,2,1) and P3=(2,1,0) while taking p=(p1+p2+p3)/3?
댓글 수: 2
Amit
2014년 12월 15일
what you mean by 'while taking p=(p1+p2+p3)/3?'? The plane can be defined by 3 points. Am I missing something?
답변 (1개)
Youssef Khmou
2014년 12월 15일
you can use geometric construction with meshgrid function or use patch function as follows :
patch([1 1 2],[2 2 1],[3 1 0],0.5), view(30,20)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Polygons에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!