📄 learn_params.m
字号:
function CPD = learn_params(CPD, local_data)% LEARN_PARAMS Compute the ML/MAP estimate of the params of a tabular CPD given complete data% CPD = learn_params(CPD, local_data)%% local_data(i,m) is the value of i'th family member in case m (can be cell array).if iscell(local_data) local_data = cell2num(local_data);endcounts = compute_counts(local_data, CPD.sizes);switch CPD.prior_type case 'none', CPD.CPT = mk_stochastic(counts); case 'dirichlet', CPD.CPT = mk_stochastic(counts + CPD.dirichlet); otherwise, error(['unrecognized prior ' CPD.prior_type])end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -