annotate toolboxes/FullBNT-1.0.7/bnt/CPDs/@tabular_CPD/update_ess.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 function CPD = update_ess(CPD, fmarginal, evidence, ns, cnodes, hidden_bitv)
Daniel@0 2 % UPDATE_ESS Update the Expected Sufficient Statistics of a tabular node.
Daniel@0 3 % function CPD = update_ess(CPD, fmarginal, evidence, ns, cnodes, hidden_bitv)
Daniel@0 4
Daniel@0 5 dom = fmarginal.domain;
Daniel@0 6
Daniel@0 7 if all(hidden_bitv(dom))
Daniel@0 8 CPD = update_ess_simple(CPD, fmarginal.T);
Daniel@0 9 %fullm = add_ev_to_dmarginal(fmarginal, evidence, ns);
Daniel@0 10 %assert(approxeq(fullm.T(:), fmarginal.T(:)))
Daniel@0 11 else
Daniel@0 12 fullm = add_ev_to_dmarginal(fmarginal, evidence, ns);
Daniel@0 13 CPD = update_ess_simple(CPD, fullm.T);
Daniel@0 14 end
Daniel@0 15