How to plot three dimensional triangular based pyramid?

23 ビュー (過去 30 日間)
rohit sharma
rohit sharma 2020 年 6 月 29 日
回答済み: pascal giorgi 2021 年 10 月 29 日
I want to plot a 3d triangular based pyramid in Matlab. In 2d it's basically an equilateral triangle. Shall I need to write an equation for each faces individually?
How can I plot it?
Thanks in advance.

採用された回答

darova
darova 2020 年 6 月 30 日
Here is the way
[x,y] = pol2cart(deg2rad(0:120:360),1);
x1 = [x*0; x; x*0];
y1 = [y*0; y; y*0];
z1 = [x*0+1; x*0; x*0];
surf(x1,y1,z1)
axis vis3d

その他の回答 (1 件)

pascal giorgi
pascal giorgi 2021 年 10 月 29 日
Thnaks mate !

Community Treasure Hunt

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

Start Hunting!

Translated by