Download<< Back
function dxdt = popgrowth(t, x) %POPGROWTH Population growth ODE: % x' = \lambda x lambda = log(2); dxdt = lambda*x; end