annotate toolboxes/FullBNT-1.0.7/bnt/general/dbn_to_bnet.m @ 0:e9a9cd732c1e
tip
first hg version after svn
author |
wolffd |
date |
Tue, 10 Feb 2015 15:05:51 +0000 |
parents |
|
children |
|
rev |
line source |
wolffd@0
|
1 function bnet = dbn_to_bnet(dbn, T)
|
wolffd@0
|
2 % DBN_TO_BNET Convert a DBN to a static network by unroll for T slices
|
wolffd@0
|
3 % bnet = dbn_to_bnet(dbn, T)
|
wolffd@0
|
4
|
wolffd@0
|
5 ss = length(dbn.intra);
|
wolffd@0
|
6 eclass = [dbn.equiv_class(:,1) repmat(dbn.equiv_class(:,2), 1, T-1)];
|
wolffd@0
|
7 dnodes = unroll_set(dbn.dnodes_slice, ss, T);
|
wolffd@0
|
8 ns = repmat(dbn.node_sizes_slice(:), 1, T);
|
wolffd@0
|
9 dag = unroll_dbn_topology(dbn.intra, dbn.inter, T, dbn.intra1);
|
wolffd@0
|
10 onodes = unroll_set(dbn.observed(:), ss, T);
|
wolffd@0
|
11 bnet = mk_bnet(dag, ns(:), 'discrete', dnodes(:), 'equiv_class', eclass(:), 'observed', onodes(:));
|
wolffd@0
|
12 bnet.CPD = dbn.CPD;
|
wolffd@0
|
13
|