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