早教吧 育儿知识 作业答案 考试题库 百科 知识分享

绘制x=sin(x),y=cos(x),z=t在[0,6pi]上的三维曲线

题目详情
绘制x=sin(x),y=cos(x),z=t在[0,6pi]上的三维曲线
▼优质解答
答案和解析
>>syms t
>>x=sin(t);
>>y=cos(t);
>>z=t;
>>ezplot3(x,y,z,[0,6*pi])
用的是matlab