stationary_distribution {localScore} | R Documentation |
Calculates stationary distribution of markov transition matrix by use of eigenvectors of length 1
stationary_distribution(m)
m |
Transition Matrix [matrix object] |
A vector with the probabilities
B = t(matrix (c(0.2, 0.8, 0.4, 0.6), nrow = 2))
stationary_distribution(B)