x=0:pi/180:2*pi; %自己定义x的取值y=sin(x).*cos(x);plot(x,y);注意用点乘就可以了。
x=[-pi:0.01:pi];>> y=sin(x)*cos(x); plot(x,y, 'LineWidth',2)