% This script needs the file Fsi.m to run
% Fsi.m contains the differential equation model
% S is the number of Susceptible individuals at each time step
% I is the number of Infected individuals at each time step
N=1000; %Population Size
%-- initial condictions
i0=5; % initial condiction for I
s0=N-i0; % initial condiction for S
% --
T=100; % evaluation time
%-- parameters
beta=0.1; % infectious rate
%--
S0I0=[s0 i0]; % initial condictions Vector
Tspam=[0:0.1:T]; % time interval
%-- Numerical Integration
[T,Y] = ode45(@(t,Y) Fsi(t,Y,beta,N),Tspam,S0I0);
%--
S=Y(:,1); % Solution S
I=Y(:,2); % Solution I
%----- plots -----
plot(T,S,'k');
hold on;
grid on;
plot(T,I,'r--');
title(['SI model with parameters: \beta= ',num2str(beta),' N=',num2str(N)])
xlabel('Time')
ylabel('Number of Individuals')
legend('S','I','Location','best')
%------------------
前程算法屋
- 粉丝: 5770
- 资源: 835
最新资源
- 市建设工程安全生产标准化管理优良工地申报表.docx
- 特殊建设工程消防验收现场评定(其他建设工程消防验收备案现场检查)监督记录表.docx
- 提前报废老旧营运柴油货车补贴标准、新购营运货车补贴标准表.docx
- 基于鸟鸣声识别的鸟类分类系统项目源代码全套技术资料.zip
- 解析XML文件,使用ElementTree模块,并根据流程图设计合适的数据结构保存解析结果-使用Python ElementTree模块解析XML文件并设计数据结构-含源代码及解释
- 膝关节功能丧失程度评定表.docx
- 外出务工就业交通补助申报表.docx
- 腕关节功能丧失程度评定表.docx
- 现场评定检查表—— 防爆.docx
- 现场评定检查表—— 防火分隔、固定窗.docx
- 现场评定检查表——安全疏散.docx
- 现场评定检查表——建筑类别与耐火等级表.docx
- 现场评定检查表——建筑灭火器.docx
- 现场评定检查表--泡沫灭火系统.docx
- 现场评定检查表——平面布置.docx
- 现场评定检查表——建筑内部装修防火.docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈