comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 function joint = combine_marginals_into_joint(marginalsT, hnodes, ns)
2
3 jointT = dpot(hnodes, ns(hnodes));
4 for i=hnodes(:)'
5 jointT = multiply_by_pot(jointT, marginalsT{i});
6 end
7 m = pot_to_marginal(jointT);
8 joint = m.T(:);