canoncond.m

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

M
15
字号
% CANONCOND  Compute the conditional p(xs|xt), where p is a Normal%            density following the canonical parameterization. %   The function call is [NU L] = CANONCOND(NUS,LSS,LST,XT) where the%   joint p(xs,xt) is parameterized by%       [NUS;   [LSS  LST%        NUT]    LST' LTT].%   XT is the observed value of the corresponding random variable.%   The output is are the canonical parameters of the conditional %   p(xs|xt).function [nu, L] = canoncond (nus, Lss, Lst, xt)    nu = nus - Lst*xt;  L  = Lss;  

⌨️ 快捷键说明

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