MATLAB: Plotting solution of ODE system

eulereuler'seuler's methodexponential growthlogistic modelMATLABode45predatorprey

Hi, I am creating a predator prey model for rabbits and foxes. I have all of my outputs done except for one in which I need to plot the ode solution for the rabbit population as the x variable and the ode solution for the fox population as the y variable.

Best Answer

plot(y(:,1), y(:,2))