powered by
Given a markovchain object, this function calculates the probability of ever arriving from state i to j
hittingProbabilities(object)
a matrix of hitting probabilities
the markovchain-class object
Ignacio Cordón
R. Vélez, T. Prieto, Procesos Estocásticos, Librería UNED, 2013
M <- markovchain:::zeros(5) M[1,1] <- M[5,5] <- 1 M[2,1] <- M[2,3] <- 1/2 M[3,2] <- M[3,4] <- 1/2 M[4,2] <- M[4,5] <- 1/2 mc <- new("markovchain", transitionMatrix = M) hittingProbabilities(mc)
Run the code above in your browser using DataLab