canontomoment.m

来自「Gaussian belief propagation code in matl」· M 代码 · 共 9 行

M
9
字号
% [MU, S] = CANONTOMOMENT(NU,L) converts the canonical parameterization of% the Normal density to the momemnt parameterization with mean MU and% covariance S.function [mu, S] = canontomoment (nu, L)    S  = inv(L);  mu = S*nu;  

⌨️ 快捷键说明

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