hittingProbabilities | R Documentation |
Given a markovchain object, this function calculates the probability of ever arriving from state i to j
hittingProbabilities(object)
object |
the markovchain-class object |
a matrix of hitting probabilities
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.