To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / _FullBNT / BNT / CPDs / @tabular_CPD / update_ess_simple.m @ 8:b5b38998ef3b

History | View | Annotate | Download (264 Bytes)

1
function CPD = update_ess_simple(CPD, counts)
2
% UPDATE_ESS_SIMPLE Update the Expected Sufficient Statistics of a tabular node.
3
% function CPD = update_ess_simple(CPD, counts)
4

    
5
CPD.nsamples = CPD.nsamples + 1;            
6
CPD.counts = CPD.counts + counts(:);