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

1 vue (au cours des 30 derniers jours)
AMA
AMA le 25 Mai 2021
Commenté : AMA le 11 Juin 2021
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')

Réponses (1)

Manas Meena
Manas Meena le 3 Juin 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

Catégories

En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by