compute_bnet_nparams.m.svn-base
来自「bayesian network structrue learning mat」· SVN-BASE 代码 · 共 14 行
SVN-BASE
14 行
function [D,d]= compute_bnet_nparams(bnet)% [D,d] = compute_bnet_nparams(bnet)%% D is the dimension of the network% d is the vector containing the number of parameters for all nodesN = length(bnet.dag);d = zeros(1,N);for i=1:N a = struct(bnet.CPD{i}); d(i) = a.nparams;endD = sum(d);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?