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

用subplot()函数在同一窗口画出y=sinx,y=cosx,y=x平方,成品字形的,告急!

题目详情
用subplot()函数在同一窗口画出y=sinx,y=cosx,y=x平方,成品字形的,告急!
▼优质解答
答案和解析
x=-2*pi:0.1:2*pi;
y1=sin(x);
y2=cos(x);
y3=x.^2;
y4=x.^3;
subplot(2,2,1);
plot(x,y1,'r');
subplot(2,2,2);
plot(x,y2,'r');
subplot(2,2,3);
plot(x,y3,'r');
subplot(2,2,4);
plot(x,y4,'r');