annotate matlab/flstUpdateModel.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 d = flstUpdateModel(d, mdl)
matthiasm@0 2
matthiasm@0 3 d.from = mdl.transFrom;
matthiasm@0 4 d.to = mdl.transTo;
matthiasm@0 5 d.prob = mdl.transProb;
matthiasm@0 6 d.init = mdl.init;
matthiasm@0 7 d.nTrans = length(mdl.transFrom);