按要求使用matlab解决下题?、绘制三维曲线:x=sin(t),y=cos(t),z=t*sin(t)*cos(t) (0《=t《=20*pi) (注意:用plot3命令)
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/25 16:49:08
按要求使用matlab解决下题?、绘制三维曲线:x=sin(t),y=cos(t),z=t*sin(t)*cos(t)(0《=t《=20*pi)(注意:用plot3命令)按要求使用matlab解决下题
按要求使用matlab解决下题?、绘制三维曲线:x=sin(t),y=cos(t),z=t*sin(t)*cos(t) (0《=t《=20*pi) (注意:用plot3命令)
按要求使用matlab解决下题?、
绘制三维曲线:x=sin(t),y=cos(t),z=t*sin(t)*cos(t) (0《=t《=20*pi) (注意:用plot3命令)
按要求使用matlab解决下题?、绘制三维曲线:x=sin(t),y=cos(t),z=t*sin(t)*cos(t) (0《=t《=20*pi) (注意:用plot3命令)
close;clear;clc;
t = 0:pi/4:20*pi;
x = sin(t);
y = cos(t);
z = t.*sin(t).*cos(t);
plot3(x, y, z);
结果如图: