Parameter estimation for an epidemic model
조회 수: 3 (최근 30일)
이전 댓글 표시
I have an epidemic model:
function ypsirid = ypsirid(t,y)
global q m b r
ypsirid(1) = q - m*y(1) - b*y(1)*y(2);
ypsirid(2) = (b*y(1)*y(2)) - (m+r)*y(2);
ypsirid(3) = (r*y(2)) - m*y(3);
ypsirid = ypsirid(:)
I would like to estimate two parameters - b and r for this model. Can anyone kindly suggest the easiest possible method to do so using MATLAB.
댓글 수: 0
채택된 답변
Torsten
2015년 8월 3일
As a guideline, take a look at
There, parameters of a Monod kinetic have been fitted to measurements.
Best wishes
Torsten.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
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!