comparison toolboxes/FullBNT-1.0.7/bnt/CPDs/@tabular_CPD/update_ess.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 function CPD = update_ess(CPD, fmarginal, evidence, ns, cnodes, hidden_bitv)
2 % UPDATE_ESS Update the Expected Sufficient Statistics of a tabular node.
3 % function CPD = update_ess(CPD, fmarginal, evidence, ns, cnodes, hidden_bitv)
4
5 dom = fmarginal.domain;
6
7 if all(hidden_bitv(dom))
8 CPD = update_ess_simple(CPD, fmarginal.T);
9 %fullm = add_ev_to_dmarginal(fmarginal, evidence, ns);
10 %assert(approxeq(fullm.T(:), fmarginal.T(:)))
11 else
12 fullm = add_ev_to_dmarginal(fmarginal, evidence, ns);
13 CPD = update_ess_simple(CPD, fullm.T);
14 end
15