⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 learn_params.m

📁 贝叶斯算法(matlab编写) 安装,添加目录 /home/ai2/murphyk/matlab/FullBNT
💻 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 + -