comparison toolboxes/FullBNT-1.0.7/bnt/inference/@inf_engine/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 m = marginal_family(engine, i, t)
2 % MARGINAL_FAMILY Compute the marginal on i's family (inf_engine)
3 % m = marginal_family(engine, i, t)
4 %
5 % t defaults to 1.
6
7 if nargin < 3, t = 1; end
8
9 bnet = bnet_from_engine(engine);
10 if t==1
11 m = marginal_nodes(engine, family(bnet.dag, i));
12 else
13 ss = length(bnet.intra);
14 fam = family(bnet.dag, i+ss);
15 if any(fam<=ss)
16 % i has a parent in the preceeding slice
17 % Hence the lowest numbered slice containing the family is t-1
18 m = marginal_nodes(engine, fam, t-1);
19 else
20 % The family all fits inside slice t
21 % Hence shift the indexes back to slice 1
22 m = marginal_nodes(engine, fam-ss, t);
23 end
24 end