No BSD License  

Highlights from
Lotka Volterra & Oregonator Using GUI

image thumbnail
from Lotka Volterra & Oregonator Using GUI by Housam Binous
Use GUI to present the solution of nonlinear dynamic problems

xdot=LV(t,x)
function xdot=LV(t,x)

A = 3.7; k1 = 1.2; k2 = 1.5; k3 = 1.2;

xdot(1)=k1*A*x(1) - k2*x(1)*x(2);
xdot(2)=k2*x(1)*x(2) - k3*x(2);

xdot=xdot';

Contact us at files@mathworks.com