pot_to_marginal.m
来自「用matlab实现贝叶斯网络的学习、推理。」· M 代码 · 共 13 行
M
13 行
function m = pot_to_marginal(pot)% POT_TO_MARGINAL Convert a dpot to a marginal structure.% m = pot_to_marginal(pot)m.domain = pot.domain;m.T = pot.T;m.mu = [];m.Sigma = []; %if isvector(m.T)% m.T = m.T(:);%end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?