| HMMEmission-class {STAN} | R Documentation |
This class is a generic container for different emission functions of Hidden Markov Models.
typeThe type of emission function c('Gaussian').
parametersA list containing the the parameters for each state.
dimNumber of dimensions.
nStatesThe number of states.
nStates = 5 means = list(4,11,4,11,-1) Sigma = lapply(list(4,4,4,4,4), as.matrix) transMat = matrix(1/nStates, nrow=nStates, ncol=nStates) initProb = rep(1/nStates, nStates) HMMEmission(type='Gaussian', parameters=list(mu=means, cov=Sigma), nStates=length(means))