comparison toolboxes/FullBNT-1.0.7/bnt/inference/static/@jtree_limid_inf_engine/marginal_nodes.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, pot] = marginal_nodes(engine, query)
2 % MARGINAL_NODES Compute the marginal on the specified nodes (jtree_limid)
3 % [m, pot] = marginal_nodes(engine, query)
4 %
5 % query should be a subset of a family of a decision node
6
7 if isempty(query)
8 bnet = bnet_from_engine(engine);
9 d = bnet.decision_nodes(1); % pick an arbitrary decision node
10 [dummy, big_pot] = marginal_family(engine, d);
11 else
12 [dummy, big_pot] = marginal_family(engine, query);
13 end
14 pot = marginalize_pot(big_pot, query);
15 m = pot_to_marginal(pot);
16
17