用Matlab的Plot函数画多条曲线

1. 图示:
用Matlab的Plot函数画多条曲线_第1张图片
 
 
2. 代码
x=1:10;
y1=[1.21, 1.13, 1.15, 1.13, 1.14, 1.15, 1.16, 1.12, 1.18, 1.13];
y2=[1.61, 1.63, 1.7, 1.64, 1.63, 1.64, 1.71, 1.66, 1.65, 1.66];
plot(x, y1,'r:+',  x, y2, 'b:+');
xlabel('times');
ylabel('Completion Time(s)');








   

你可能感兴趣的:(matlab,plot)