about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/inference/static/@gibbs_sampling_inf_engine/private/get_cpts.m
blob: 77c860701f4c5c5426ca00c9dc6d74869cef239b (plain)
1
2
3
4
5
6
7
8
function c = get_cpts(bnet)
% Get all the cpts in tabular form

cpds = bnet.CPD;
c = cell(size(cpds));
for i = 1:length(c)
  c{i} = CPT(bnet, i);
end