To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / _FullBNT / BNT / general / hodbn_to_bnet.m @ 8:b5b38998ef3b
History | View | Annotate | Download (704 Bytes)
| 1 |
function bnet = hodbn_to_bnet(dbn, T) |
|---|---|
| 2 |
% DBN_TO_BNET Convert a DBN to a static network by unroll for T slices |
| 3 |
% bnet = dbn_to_bnet(dbn, T) |
| 4 |
ss = length(dbn.intra); |
| 5 |
[row,order] = size(dbn.equiv_class); |
| 6 |
eclass = []; |
| 7 |
for i = 1:min(order,T) |
| 8 |
eclass = [eclass ; dbn.equiv_class(:,i)]; |
| 9 |
end |
| 10 |
if T > order |
| 11 |
eclass = [eclass ; repmat(dbn.equiv_class(:,order),T-order,1)]; |
| 12 |
end |
| 13 |
|
| 14 |
dnodes = unroll_set(dbn.dnodes_slice, ss, T); |
| 15 |
ns = repmat(dbn.node_sizes_slice(:), 1, T); |
| 16 |
dag = unroll_higher_order_topology(dbn.intra, dbn.inter, T, dbn.intra1); |
| 17 |
onodes = unroll_set(dbn.observed(:), ss, T); |
| 18 |
bnet = mk_bnet(dag, ns(:), 'discrete', dnodes(:), 'equiv_class', eclass(:), 'observed', onodes(:)); |
| 19 |
bnet.CPD = dbn.CPD; |
| 20 |
|
| 21 |
|