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?
回答(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 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!