Description Usage Arguments Value Author(s) References Examples
This function simulates a HMM path of size 'm' given a matrix of transition probabilities 'P'. By default, the path always begins at the first state of the HMM.
1 | simulateHMM(P, m)
|
P |
a square matrix of transition probabiltiies such that all(rowSums(P)==1) is TRUE |
m |
length of the HMM path |
A vector of integers of length 'm' representing states of the HMM
Pedro L. Baldoni, pedrobaldoni@gmail.com
https://github.com/plbaldoni/mixHMM
1 | rle(simulateHMM(P = matrix(c(0.95,0.05,0.05,0.95),2,2),m = 1e4))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.