global V K K = 5; V = 1; tt = 0:0.1:10; x0= [5,0]; [t,x] = ode45('valentinefunction',tt,x0); plot(t,x) xlabel('time') ylabel('abundance') title('Substrate and Enzyme over Time') legend('Substrate','Enzyme')