about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/CPDs/@tabular_CPD/reset_ess.m
blob: 0ce90e3aa39b1cd6716530023dc5c2167f05b53a (plain)
1
2
3
4
5
6
7
function CPD = reset_ess(CPD)
% RESET_ESS Reset the Expected Sufficient Statistics of a tabular node.
% CPD = reset_ess(CPD)

%CPD.counts = zeros(size(CPD.CPT));
CPD.counts = zeros(prod(size(CPD.CPT)), 1);
CPD.nsamples = 0;