comparison toolboxes/FullBNT-1.0.7/bnt/inference/dynamic/@jtree_unrolled_dbn_inf_engine/Old/marginal_family.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 marginal = marginal_family(engine, i, t)
2 % MARGINAL_FAMILY Compute the marginal on the specified family (jtree_unrolled_dbn)
3 % marginal = marginal_family(engine, i, t)
4
5 if nargin < 3, t = 1; end
6
7 bnet = bnet_from_engine(engine);
8 ss = length(bnet.intra);
9 marginal = marginal_family(engine.sub_engine, i + (t-1)*ss);
10