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

1 Ansicht (letzte 30 Tage)
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')

Antworten (1)

Manas Meena
Manas Meena am 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

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by