about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/CPDs/@hhmm2Q_CPD/reset_ess.m
blob: 8204c16732f1496577ef5da426fc04ea8d36a5d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function CPD = reset_ess(CPD)
% RESET_ESS Reset the Expected Sufficient Statistics of a hhmm2 Q node.
% CPD = reset_ess(CPD)

domsz = CPD.dom_sz;
domsz(CPD.Fself_ndx) = 1;
domsz(CPD.Fbelow_ndx) = 1;
Qdom_sz = domsz;
Qdom_sz(Qdom_sz==1)=[]; % get rid of dimensions of size 1

CPD.start_counts = zeros(Qdom_sz);
CPD.trans_counts = zeros(Qdom_sz);