Closed FangBigSheep closed 5 years ago
In the vignette of HMM, file hmm.Rmd, in the forward algorithm
HMM
hmm.Rmd
Line 80:
alpha[t+1,k]__ = m[k]*emit(k,X[t])
it seems that line should be
alpha[t+1,k] = m[k]*emit(k,X[t + 1])
Please check.
fixed thanks
In the vignette of
HMM
, filehmm.Rmd
, in the forward algorithmLine 80:
it seems that line should be
Please check.