updatestatetransitions.m

来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 23 行

M
23
字号
% function  newG = updateStateTransitions(G)%% Updates G.D, G.timeTransLog, G.stateTransLog, G.stateTrans% using the new values of d_1^k provide from the M-step update% rule.% note that the order of these updates is crucial.function  newG = updateStateTransitions(G)newG=G;%% updateTimeConst and updateScaleConst have already%% updated other relevant parametersnewG.stateTransLog = getStateTransLog(G);newG.stateTrans = getStateTrans(newG);return; %% WARNING, I HAD IT LIKE THIS BEFORE!!!%newG.stateTrans = getStateTrans(G);%warning('MUST FIX THIS FUNCTION!!!');

⌨️ 快捷键说明

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