Mercurial > hg > camir-ismir2012
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:cc4b1211e677 |
---|---|
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 |