| initializeHMM-methods {tileHMM} | R Documentation |
Objects of class contHMM are created by calling
new("contHMM", transition, emission, init).
## S4 method for signature 'contHMM': new(Class, transition, emission, init = NULL)
Class |
A character string specifying the class of the object to be created. In this case "contHMM". |
transition |
A list with one object of class discDist for each state of the model. These are used as transition probabilities. |
emission |
A list with one object of class contDist for each state of the model. These are used as emission distributions. |
init |
An object of class discDist or NULL. This is used as the initial state distribution. |
The length of all arguments (except Class) has to be equal. If init is NULL a uniform initial
state distribution is used.
contHMMPeter Humburg