Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Freidenker
  • Content: Threads
  • Order by date
  1. Freidenker

    Problems with a simple system of ODE

    Hello, I have a simple system of ODE; function xdot=test(t,x); xdot=[ 2*x(1)*(1-x(1)/2000)-(15*x(1)*x(2))/(x(1)+70); 1*x(2)*((15*x(1))/(x(1)+70)-9)]; return; tspan=[0 50]; x0=[1000;20]; options=odeset('RelTol',0.01); [t,x]=ode23('test',tspan,x0,options); plot(t,x, '-')...

Part and Inventory Search

Back
Top