cg_mom_to_can.m

来自「基于matlab的bayes net toolbox,希望对大家能有些帮助」· M 代码 · 共 11 行

M
11
字号
function pot = cg_mom_to_can(pot)% CG_MOM_TO_CAN Convert a CG potential from moment to canonical form, if necessary.% pot = cg_mom_to_can(pot)if pot.subtype ~= 'c'  for i=1:pot.dsize    pot.can{i} = mpot_to_cpot(pot.mom{i});  end  pot.subtype = 'c';end   

⌨️ 快捷键说明

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