> 其他 >
如何用matlab画参数函数的图像
在matlab中如何画出参数方程的函数图像
x=a*cost*cost*cost
y=a*sint*sint*sint
人气:314 ℃ 时间:2020-03-28 07:27:13
解答
a=1;
t=-2*pi:0.01:2*pi;
x=a*cos(t).*cos(t).*cos(t);
y=a*sin(t).*sin(t).*sin(t);
plot(x,y)
推荐
猜你喜欢
© 2025 79432.Com All Rights Reserved.
电脑版|手机版