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

3 次查看(过去 30 天)
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')

回答(1 个)

Manas Meena
Manas Meena 2021-6-3
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

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by