annotate toolboxes/FullBNT-1.0.7/bnt/inference/dynamic/@bk_ff_hmm_inf_engine/private/combine_marginals_into_joint.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 function joint = combine_marginals_into_joint(marginalsT, hnodes, ns)
wolffd@0 2
wolffd@0 3 jointT = dpot(hnodes, ns(hnodes));
wolffd@0 4 for i=hnodes(:)'
wolffd@0 5 jointT = multiply_by_pot(jointT, marginalsT{i});
wolffd@0 6 end
wolffd@0 7 m = pot_to_marginal(jointT);
wolffd@0 8 joint = m.T(:);