📄 canoncond.m
字号:
% 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -