view 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
line wrap: on
line source
function mdl = hmm_dummy()

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

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