📄 compute_bnet_nparams.m.svn-base
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -