powered by
Given a markovchain object and reward values for every state, function calculates expected reward value after n steps.
expectedRewards(markovchain,n,rewards)
the markovchain-class object
no of steps of the process
vector depicting rewards coressponding to states
returns a vector of expected rewards for different initial states
the function uses a dynamic programming approach to solve a recursive equation described in reference.
Stochastic Processes: Theory for Applications, Robert G. Gallager, Cambridge University Press
# NOT RUN { transMatr<-matrix(c(0.99,0.01,0.01,0.99),nrow=2,byrow=TRUE) simpleMc<-new("markovchain", states=c("a","b"), transitionMatrix=transMatr) expectedRewards(simpleMc,1,c(0,1)) # }
Run the code above in your browser using DataLab