How to plot a cone in 3D.
조회 수: 170 (최근 30일)
이전 댓글 표시
I want to plot a cone satisfying the equation |z| < x^(0.5)*y^(0.5) and it should look like as shown in the image. How to do this in matlab?
![cone.JPG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/214872/cone.jpeg)
댓글 수: 0
채택된 답변
Nitin Phadkule
2021년 8월 17일
편집: darova
2021년 8월 19일
[X,Y,Z]=cylinder([0 .5],50 );
axis([0 1,-1 1,-.5 .5])
M=makehgtform('translate',[0,0,0],'xrotate',pi/4,'yrotate',pi/2);
h=surf(X,Y,Z,'Parent',hgtransform('Matrix',M),'LineStyle','none','FaceAlpha',0.4);
view([30,35])
grid on
light
댓글 수: 0
추가 답변 (1개)
Mayur
2024년 3월 4일
Create a MATLAB program that returns 3 D plot of a cone centered at the origin with unit length using 25 equally spaced points on the x and y directions Cylinder function can be y axis centered and be used directly cylinder(y, 25)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!