Can MATLAB solve Ordinary Differential Equations (ODE)?
MATLAB has four basic functions to solve ODE’s, quad , quad8 , ode23, and ode45 . quad uses an adaptive recursive Simpson’s rule, quad8 uses an adaptive recursive Newton Cotes 8 panel rule, and ode23 uses the Runge-Kutta method. In addition to ode23 , there is an ode45 function, which uses a 4th and 5th order Runge-Kutta as opposed to ode23 ‘s 2nd and 3rd order.