laplaceestimator.m
来自「UMDA. a kind of estimation of distributi」· M 代码 · 共 9 行
M
9 行
function[Table] = LaplaceEstimator(totcliq,NPoints,Table)% Modify the probability tables using Laplace estimator for i=1:totcliq, cardcliq = size(Table{i},1); Table{i} = (Table{i} * NPoints + 1) / (NPoints+ cardcliq); end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?