You are on page 1of 1

clc

clear all
x1=[2.6 5.2 7.8 10 12.2 13.8];
y1=[215 209 205 201 198 195];
x2=[2.6 5.1 7.4 9.6 11.9 12.9 14.7];
y2=[210 203 197 190 185 182 176];
hold on
grid on
subplot(1,1,1)
plot(x1,y1)
subplot(1,1,1)
plot(x2,y2)

You might also like