t = [0:0.01:0.98];
sin图像
y1 = sin(2*pi*4*t);
plot(t,y1);
cos图像
y2 = cos(2*pi*4*t);
plot(t,y2);
sin和cos图像合并
plot(t,y1);
hold on;
plot(t,y2,'r');
设置x、y轴名字,曲线名字以及图像名字
xlabel('time');
ylabel('value');
legend('sin','cos')
title('my plot')
输出图表