about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/CPDs/mk_isolated_tabular_CPD.m
blob: 6c2c237ef86b3facbc1b82029353bea77efb089e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function CPD = mk_isolated_tabular_CPD(fam_sz, args)
% function CPD = mk_isolated_tabular_CPD(fam_sz, args)
% function CPD = mk_isolated_tabular_CPD(fam_sz, args)
% Make a single CPD by creating a mini-bnet containing just this one family.
% This is necessary because the CPD constructor requires a bnet.

n = length(fam_sz);
dag = zeros(n,n);
ps = 1:(n-1);
if ~isempty(ps)
  dag(ps,n) = 1;
end
bnet = mk_bnet(dag, fam_sz);
CPD = tabular_CPD(bnet, n, args{:});