cg_can_to_mom.m
来自「基于matlab的bayes net toolbox,希望对大家能有些帮助」· M 代码 · 共 11 行
M
11 行
function pot = cg_can_to_mom(pot)% CG_CAN_TO_MOM Convert a CG potential from canonical to moment form, if necessary.% pot = cg_can_to_mom(pot)if pot.subtype ~= 'm' for i=1:pot.dsize pot.mom{i} = cpot_to_mpot(pot.can{i}); end pot.subtype = 'm';end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?