how to create a 3D cone ?
    조회 수: 21 (최근 30일)
  
       이전 댓글 표시
    
i am trying like this
m=1000;
n=1000;
r=2;
h=5;
for i=1:m
    for j=1:n
        I(i,j)=1/3*pi*r^2*h*i/n;
    end
end
imshow(I)
but i am not getting result,please help
댓글 수: 0
채택된 답변
  KSSV
      
      
 2017년 7월 24일
        r = linspace(0,2*pi) ;
th = linspace(0,2*pi) ;
[R,T] = meshgrid(r,th) ;
X = R.*cos(T) ;
Y = R.*sin(T) ;
Z = R ;
surf(X,Y,Z)
댓글 수: 4
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!