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.

 Respuesta aceptada

Torsten
Torsten el 3 de Ag. de 2015

0 votos

As a guideline, take a look at
There, parameters of a Monod kinetic have been fitted to measurements.
Best wishes
Torsten.

Más respuestas (0)

Categorías

Más información sobre Biological and Health Sciences en Centro de ayuda y File Exchange.

Preguntada:

el 3 de Ag. de 2015

Respondida:

el 3 de Ag. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by