3D plotting of given parametric equations
조회 수: 12 (최근 30일)
이전 댓글 표시
Hi everyone, I need 3D plot of given parametric equations:

Here also R varies between [25 75], i tried to use meshgrid and ndgrid functions but had a problem using them with varying 3 variables U, V and R. How can i plot this? Also, 3D plot should look like this: (Don't mind numbers they are different in my case)

Thank you in advance
댓글 수: 0
채택된 답변
KSSV
2022년 6월 21일
m = 50 ; n = 50 ;
p = 5 ;
u = linspace(0,pi,m) ;
v = linspace(0,2*pi,n) ;
r = linspace(25,75,p) ;
[U,V,R] = meshgrid(u,v,r) ;
Z = R.*cos(U).*cos(V) ;
Y = R.*cos(U).*sin(V) ;
X = sqrt(R.^2-Z.^2-Y.^2);
figure
hold on
for i = 1:p
mesh(abs(X(:,:,i)),Y(:,:,i),Z(:,:,i))
end
view(3)
댓글 수: 4
추가 답변 (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!

