> 其他 >
怎样用matlab画参数方程x=u*sin(t);y=u*cos(t);z=100*t/1715;0
人气:312 ℃ 时间:2020-01-27 17:55:39
解答
t=linspace(0,20);
u=linspace(0,2,10);
[t,u]=meshgrid(t,u);
x=u.*sin(t);
y=u.*cos(t);
z=100*t/1715;
surf(x,y,z)
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版