当前位置:   article > 正文

2021-08-11_用cylinder命令绘制旋转抛物面

用cylinder命令绘制旋转抛物面

调用cylinder和sphere函数绘制柱面、哑铃面、球面和椭球面

>> % 绘制圆柱面
>> subplot(2,2,1);
>> [x,y,z]=cylinder;
>> surf(x,y,z);
>> title('圆柱面')
>> 
>> % 绘制哑铃面
>> subplot(2,2,2);
>> t=0:pi/10:2*pi;
>> [X,Y,Z]=cylinder(2+cos(t));
>> surf(X,Y,Z);
>> title('哑铃面')
>> 
>> %绘制球面,半径为10,球心(1,1,1)
>> subplot(2,2,3);
>> [x,y,z]=sphere;
>> surf(10*x+1,10*y+1,10*z+1);
>> axis equal;
>> title('球面')
>> 
>> %绘制椭球面
>> subplot(2,2,4);
>> a=4;
>> b=3;
>> t=-b:b/10:b;
>> [x,y,z]=cylinder(a*sqrt(1-t.^2/b^2),30);
>> surf(x,y,z);
>> title('椭球面')
>> 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/115899
推荐阅读
相关标签
  

闽ICP备14008679号