Mercurial > hg > flst
annotate matlab/hmm_dummy.m @ 1:4283604499f8 tip
added mini probability to delta (not sure if this is a good idea, but I did it)
author | matthiasm |
---|---|
date | Mon, 10 Nov 2014 19:38:49 +0000 |
parents | 1df4a6fb0d22 |
children |
rev | line source |
---|---|
matthiasm@0 | 1 function mdl = hmm_dummy() |
matthiasm@0 | 2 |
matthiasm@0 | 3 % hmm_dummy returns a hidden Markov model for use in test_flst.m |
matthiasm@0 | 4 |
matthiasm@0 | 5 mdl.transFrom = [1,1,2]; |
matthiasm@0 | 6 mdl.transTo = [1,2,2]; |
matthiasm@0 | 7 mdl.transProb = [0.6, 0.4, 1]; |
matthiasm@0 | 8 mdl.init = [1,0]; |