var_elim_inf_engine.m

来自「贝叶斯算法(matlab编写) 安装,添加目录 /home/ai2/murphy」· M 代码 · 共 16 行

M
16
字号
function engine = var_elim_inf_engine(bnet, varargin)% VAR_ELIM_INF_ENGINE Variable elimination inference engine% engine = var_elim_inf_engine(bnet)%% For details on variable elimination, see% - R. Dechter, "Bucket Elimination: A Unifying Framework for Probabilistic Inference", UA1 96, pp. 211-219. % - Z. Li and B. D'Ambrosio, "Efficient inference in Bayes networks as a combinatorial%     optimization problem", Intl. J. Approximate Reasoning, 11(1):55-81, 1994% - R. McEliece and S. M. Aji, "The Generalized Distributive Law", IEEE Trans. Inform. Theory, 46(2), 2000% This is where we will store the results between enter_evidence and marginal_nodesengine.evidence = [];engine = class(engine, 'var_elim_inf_engine', inf_engine(bnet));

⌨️ 快捷键说明

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