Description Usage Arguments Value Examples
This function returns the names of dimensions (data tracks).
1 | DimNames(hmm)
|
hmm |
An object of class HMM or bdHMM. |
A character vector
1 2 3 4 5 6 7 | 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)
hmm = HMM(dimNames="1", initProb=initProb, transMat=transMat, emission=HMMEmission(type='Gaussian', parameters=list(mu=means, cov=Sigma), nStates=length(means)), nStates=nStates, status='initial')
DimNames(hmm)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.