l=length(x);
for i=1:l
	y(i)=x(i,2)-x(i,1);
end

plot(1:l,y)
title('Executions Times');
xlabel('executions');
ylabel('time (ms)');