Please I need help. How can I plot the Scale-free networks with prey-predator system

3 views (last 30 days)
How can I plot the Scale-free networks with prey-predator system
I have the system of ODEs
y1' = (2-.5*y2)*y1 +
y2' = (-1+.5*y1)*y2 +
f = @(t,y) [(2-.5*y(2))*y(1); (-1+.5*y(1))*y(2)];
y = [6;2]; t = 0; % given initial value
h = .1; % step size
for i=1:100
plot(t,y(1),'b.',t,y(2),'r.'); hold on % plot rabbits in blue, foxes in red
s = f(t,y); % find slope vector
y = y + h*s; % find new y-vector by using s
t = t + h;
end
hold off
legend('rabbits','foxes')

Answers (1)

Manas Meena
Manas Meena on 3 Jun 2021
This example shows how to solve and plot a differential equation representing a predator/prey model
You can also refer to the following file exchange link that plots a phase portrait of the Lotka-Volterra Predator Prey model

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!