You can code the equation w(t+1)=r+(1-f/v)w(t) in matlab using numerical methods. One common approach is to use the forward Euler method, which is a simple and easy-to-implement method.
Here's an implementation of the forward Euler method for the given equation:
main.m475 chars31 lines
Note that in this implementation, we have defined the parameters r, f, and v, as well as the initial condition w0, the time step dt, and the time interval t. We have also initialized an array w to store the solution and set the initial condition w(1) = w0.
Then, we have applied the forward Euler method using a for loop to update the solution at each time step i+1, based on the previous solution w(i) and the equation w(t+1) = r + (1-f/v)w(t).
Finally, we have plotted the solution using plot.
gistlibby LogSnag