getmymutemp.m
来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 21 行
M
21 行
function myMuTemp = getMyMuTemp(G,sampleNum,latentTrace)states = 1:G.numStates;myMuTemp = G.traceLogConstant(states,:).*... latentTrace(G.stateToScaleTau(states,2),:);return;%% THIS USED TO BE LIKE THIS -- PROBABLY IT WAS FINE FOR EM-BASED VERSION%% NOW I'm doing the HB-CPM though, and found this redundancy which I%% am removingthisClass = getClass(G,sampleNum);myMuTemp = G.traceLogConstant(states,:).*... permute(G.z(G.stateToScaleTau(states,2),thisClass,:),[1 3 2]);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?