my SIR epidemic model is
dS/dt= beta-lembda*I*S-u*S;
dI/dt=lembda*I*S-u*I-gamma*R;
dR/dt=gamma*R-u*R;
t=0:1:100;
gamma=.10;
lembda=.5;
u=.2;
S=50;I=20;R=30;

6 Kommentare

KSSV
KSSV am 18 Jan. 2022
What have you attempted?
Ruksana Shaikh
Ruksana Shaikh am 18 Jan. 2022
function x = sir(t, x)
x(1)=0:50:100;
x(2)=0:10:50;
x(3)=0:10:70;
beta = .5;
delta = .3;
x(1) = -beta * x(1) * x(2);
x(2) = beta * x(1) * x(2) - delta * x(2);
x(3) = delta * x(2);
plot (t,x(1),t,x(2),t,x(3))
end
Ruksana Shaikh
Ruksana Shaikh am 18 Jan. 2022
please guide me
Ruksana Shaikh
Ruksana Shaikh am 18 Jan. 2022
function x = sir(t, x)
x(1)=0:50:100;
x(2)=0:10:50;
x(3)=0:10:70;
beta = .5;
delta = .3;
x(1) = -beta * x(1) * x(2);
x(2) = beta * x(1) * x(2) - delta * x(2);
x(3) = delta * x(2);
plot (t,x(1),t,x(2),t,x(3))
end
Sunday Aloke
Sunday Aloke am 2 Nov. 2022
Verschoben: Sam Chak am 14 Okt. 2024
Please I need help on the matrix in the document attached. My MATLAB has no symbolic toolbox as in to run, can someone help me and get the determinants of the matrices l?
Thanks
andy
andy am 14 Okt. 2024
Verschoben: Sam Chak am 14 Okt. 2024

Bonjour à tous je suis entrain de travailler sur un modèle SVEIR structuré sur 7 variables S, V1 V2 Vm E I et R. je souhaite être guider s'il vous plaît.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

andy
andy am 14 Okt. 2024

0 Stimmen

Bonjour à tous je suis entrain de travailler sur un modèle SVEIR structuré sur 7 variables S, V1 V2 Vm E I et R. je souhaite être guider s'il vous plaît.

Produkte

Version

R2021b

Gefragt:

am 18 Jan. 2022

Verschoben:

am 14 Okt. 2024

Community Treasure Hunt

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

Start Hunting!

Translated by