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

10 views (last 30 days)
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?

Answers (1)

Christiaan
Christiaan on 1 Apr 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

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!