如何用matlab画参数函数的图像在matlab中如何画出参数方程的函数图像x=a*cost*cost*costy=a*sint*sint*sint

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/29 03:54:07

如何用matlab画参数函数的图像在matlab中如何画出参数方程的函数图像x=a*cost*cost*costy=a*sint*sint*sint
如何用matlab画参数函数的图像
在matlab中如何画出参数方程的函数图像
x=a*cost*cost*cost
y=a*sint*sint*sint

如何用matlab画参数函数的图像在matlab中如何画出参数方程的函数图像x=a*cost*cost*costy=a*sint*sint*sint
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)