how to change a matrix variable for each iteration of a matrix loop?

7 visualizaciones (últimos 30 días)
Sierra Cagle
Sierra Cagle el 31 de Mzo. de 2015
Respondida: Christiaan el 1 de Abr. de 2015
I have an hourly population matrix with defined parameters. One of the variables that defines the parameters is dependent on time. I want to project my matrix forward through 24 hrs. How do I incorporate this time dependent variable?

Respuestas (1)

Christiaan
Christiaan el 1 de Abr. de 2015
Dear Sierra,
Assuming that you use a ODE solver like ode 45, and you have a time dependent variable, please have a loop at this MATHWORKS answer.
If you use a for loop for your iterations, and the variable that depends on time, is an input parameter, you can first make a function that specifies the time-dependent parameter at any time. Then you can call the function in the for loop and assign this value in your matrix. A second possibility is to first make an array of that parameter (first row the time, and second row the parameter) and then use an interpolation function (i.e. pchip) to use the correct value of that parameter to update your matrix.
Good Luck! Christiaan

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by