x=zeros(1,100);
y=zeros(1,100);
for i=1:100
x(i)=2*i+1;
y(i)=i+4;
end
plot(1:100,x,'.b',1:100,y,'.r')