MATLAB: Having problems with ode solution

codedifferential equat...differential equationsfailureMATLABmichaelis menten equationsode

Best Answer

Use
[t,y] = ode15s(@(t,y)Mechanism(t,y,E,K,k), tspan, S, options);
instead of
[t,y] = ode15s(@(t,y)Mechanism(t,S,E,K,k), tspan, S, options);
Best wishes
Torsten.