?? franks_max_marginalize_pot.m
字號:
function marg_pot=franks_max_marginalize_pot(table,over,dimsizes)
%mymarginalize_pot marginalizes table over the dimensions in over
max_marg_pot=table;
for i=over
max_marg_pot=max(max_marg_pot,[],i);
end
marg_pot=squeeze(max_marg_pot); %remove all dimensions of size 1
max_marg_pot=reshape(max_marg_pot,dimsizes);%put back relevant dimensions of size 1
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -