blob: 45a70ad77a0106f31babda24d4a15210643089e5 (
plain)
1
2
3
4
5
6
7
8
|
function CPD = reset_ess(CPD)
% RESET_ESS Reset the Expected Sufficient Statistics of a hhmm Q node.
% CPD = reset_ess(CPD)
if ~isempty(CPD.sub_CPD_start)
CPD.sub_CPD_start = reset_ess(CPD.sub_CPD_start);
end
CPD.sub_CPD_trans = reset_ess(CPD.sub_CPD_trans);
|