Mercurial > hg > camir-ismir2012
annotate toolboxes/FullBNT-1.0.7/bnt/inference/dynamic/@kalman_inf_engine/marginal_nodes.m @ 0:cc4b1211e677 tip
initial commit to HG from
Changeset:
646 (e263d8a21543) added further path and more save "camirversion.m"
author | Daniel Wolff |
---|---|
date | Fri, 19 Aug 2016 13:07:06 +0200 |
parents | |
children |
rev | line source |
---|---|
Daniel@0 | 1 function marginal = marginal_nodes(engine, nodes, t) |
Daniel@0 | 2 % MARGINAL_NODES Compute the marginal on the specified query nodes (kalman) |
Daniel@0 | 3 % marginal = marginal_nodes(engine, nodes, t) |
Daniel@0 | 4 % |
Daniel@0 | 5 % 't' specifies the time slice of the earliest node in 'nodes'. |
Daniel@0 | 6 % 'nodes' cannot span more than 2 time slices. |
Daniel@0 | 7 % |
Daniel@0 | 8 % Example: |
Daniel@0 | 9 % Consider a DBN with 2 nodes per slice. |
Daniel@0 | 10 % Then t=2, nodes=[1 3] refers to node 1 in slice 2 and node 1 in slice 3, |
Daniel@0 | 11 % i.e., nodes 3 and 5 in the unrolled network, |
Daniel@0 | 12 |
Daniel@0 | 13 if nargin < 3, t = 1; end |
Daniel@0 | 14 |
Daniel@0 | 15 bnet = bnet_from_engine(engine); |
Daniel@0 | 16 ss = length(bnet.intra); |
Daniel@0 | 17 if all(nodes <= ss) |
Daniel@0 | 18 bigpot = engine.one_slice_marginal{t}; |
Daniel@0 | 19 else |
Daniel@0 | 20 bigpot = engine.two_slice_marginal{t}; |
Daniel@0 | 21 end |
Daniel@0 | 22 |
Daniel@0 | 23 nodes = nodes + (t-1)*ss; |
Daniel@0 | 24 pot = marginalize_pot(bigpot, nodes); |
Daniel@0 | 25 marginal = pot_to_marginal(pot); |