Parameter estimation for an epidemic model
古いコメントを表示
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 件)
カテゴリ
ヘルプ センター および 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!