Unable to perform assignment because the left and right sides have a different number of elements.
조회 수: 2 (최근 30일)
이전 댓글 표시
Please help me out.
% Model parameters
beta = 0.07; % daily rate of infection
gamma = 0.12; % rate of recovery
delta = 0.02; % rate of immunity loss
N = 15*10^3; % Total population N = S + I + R
I0 = 10; % initial number of infected
T = 100; % period of 300 days
B = 1000; %
k = 10^5; %
ub = 63*10^-6; % daily rate of birthsper thousand
uc = 68.49*10^-6; % rate of deaths related to cholera
ud = 24.66*10^-6; % rate of deaths unrelated to cholrea
E = 10.0; % cells per mL water per day
dt = 1/4; % time interval of 6 hours (1/4 of a day)
fprintf('Value of parameter R0 is %.2f',N*beta/gamma)
% Calculate the model
[S,I,R,B_] = sirb_model(beta,gamma,delta,ub,uc,ud,E,B,k,N,I0,T,dt);
% Plots that display the epidemic outbreak
tt = 0:dt:T-dt;
% Curve
plot(tt,S,'b',tt,I,'r',tt,R,'g','LineWidth',2); grid on;
xlabel('Days'); ylabel('Number of individuals');
legend('S','I','R');
plot(tt,B,'b','LineWidth',2); grid on;
xlabel('Days'); ylabel('Number of Viruses');
legend('B');
% Map
plot(I(1:(T/dt)-1),I(2:T/dt),"LineWidth",1,"Color",'r');
hold on; grid on;
plot(I(2),I(1),'ob','MarkerSize',4);
xlabel('Infected at time t'); ylabel('Infected at time t+1');
hold off;
Function that calculates the model evolution over a time period T.
function [S,I,R,B_] = sir_model(beta,gamma,delta,ub,uc,ud,E,B,k,N,I0,T,dt)
S = zeros(1,T/dt);
S(1) = N;
I = zeros(1,T/dt);
I(1) = I0;
R = zeros(1,T/dt);
B_ = zeros(1,T/dt);
for tt = 1:(T/dt)-1
% Equations of the model
dS = ((-beta*(B/(B+k))*S(tt) + ub*(S(tt)+I(tt)+R(tt)) - ud*S) * dt)';
dI = (beta*(B/(B+k))*S(tt) - gamma*I(tt) - (uc+ud))* dt;
dR = (gamma*I(tt) - ud*R(tt)) * dt;
dB = (E*I - delta*B) * dt;
S(tt+1) = S(tt) + dS; %%%% The error occurs around here
I(tt+1) = I(tt) + dI;
R(tt+1) = R(tt) + dR;
B_(tt+1) = B_(tt) + dB;
end
end
댓글 수: 0
채택된 답변
Walter Roberson
2021년 4월 9일
S = zeros(1,T/dt);
S(1) = N;
S is a vector.
dS = ((-beta*(B/(B+k))*S(tt) + ub*(S(tt)+I(tt)+R(tt)) - ud*S) * dt)';
^
You are using all of S in the marked place, so dS is not a scalar.
I = zeros(1,T/dt);
I(1) = I0;
I is a vector.
dB = (E*I - delta*B) * dt;
^
You are using all of I in the marked place, so dB is not a scalar.
댓글 수: 2
Walter Roberson
2021년 4월 9일
Your input B is a scalar.
You might be confusing B and B_ (which is a vector)
추가 답변 (1개)
the cyclist
2021년 4월 9일
It looks like inside your function, in these lines
dS = ((-beta*(B/(B+k))*S(tt) + ub*(S(tt)+I(tt)+R(tt)) - ud*S) * dt)';
dI = (beta*(B/(B+k))*S(tt) - gamma*I(tt) - (uc+ud))* dt;
dR = (gamma*I(tt) - ud*R(tt)) * dt;
dB = (E*I - delta*B) * dt;
you probably intended to use S(tt) in the first line, and I(tt) in the last line, instead of just S and I.
참고 항목
카테고리
Help Center 및 File Exchange에서 Biological and Health Sciences에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!