cpd_to_dpots.m

来自「贝叶斯网络的matlab实现。可以创建贝叶斯网络、训练模型」· M 代码 · 共 17 行

M
17
字号
function pots = CPD_to_dpots(CPD, domain, ns, cnodes, evidence)
% CPD_TO_DPOTS Convert the CPD to several discrete potentials, for different instantiations (generic)
% pots = CPD_to_dpots(CPD, domain, ns, cnodes, evidence)
%
% domain(:,i) is the domain of the i'th instantiation of CPD.
% node_sizes(i) is the size of node i.
% cnodes = all the cts nodes
% evidence{i} is the evidence on the i'th node.
%
% This just calls CPD_to_dpot for each domain.
    
nCPDs = size(domain,2);
pots = cell(1,nCPDs);
for i=1:nCPDs
  pots{i} = CPD_to_dpot(CPD, domain(:,i), ns, cnodes, evidence);
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?