Learn R Programming

markovchain (version 0.8.5)

meanNumVisits: Mean num of visits for markovchain, starting at each state

Description

Given a markovchain object, this function calculates a matrix where the element (i, j) represents the expect number of visits to the state j if the chain starts at i (in a Markov chain by columns it would be the element (j, i) instead)

Usage

meanNumVisits(object)

Arguments

object

the markovchain-class object

Value

a matrix with the expect number of visits to each state

References

R. V<U+00E9>lez, T. Prieto, Procesos Estoc<U+00E1>sticos, Librer<U+00ED>a UNED, 2013

Examples

Run this code
# NOT RUN {
M <- matlab::zeros(5, 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)
meanNumVisits(mc)

# }

Run the code above in your browser using DataLab