To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / _dbn / make_dbn.m @ 8:b5b38998ef3b

History | View | Annotate | Download (174 Bytes)

1
function bnet = make_dbn(param)
2
% generates the right dbn
3
switch param.dbn.name
4
    case 'ieee2008mbk'
5
        bnet = ieee2008mbk(param);
6
    otherwise
7
        bnet = [];
8
end