To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / matlab / hmm_dummy.m @ 0:1df4a6fb0d22

History | View | Annotate | Download (192 Bytes)

1
function mdl = hmm_dummy()
2

    
3
% hmm_dummy returns a hidden Markov model for use in test_flst.m
4

    
5
mdl.transFrom = [1,1,2];
6
mdl.transTo   = [1,2,2];
7
mdl.transProb = [0.6, 0.4, 1];
8
mdl.init = [1,0];