View source: R/probabilistic.R
expectedRewards | R Documentation |
Given a markovchain object and reward values for every state, function calculates expected reward value after n steps.
expectedRewards(markovchain,n,rewards)
markovchain |
the markovchain-class object |
n |
no of steps of the process |
rewards |
vector depicting rewards coressponding to states |
the function uses a dynamic programming approach to solve a recursive equation described in reference.
returns a vector of expected rewards for different initial states
Vandit Jain
Stochastic Processes: Theory for Applications, Robert G. Gallager, Cambridge University Press
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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.