mk_mnet.m
来自「麻省理工学院的人工智能工具箱,很珍贵,希望对大家有用!」· M 代码 · 共 15 行
M
15 行
function mnet = mk_mnet(graph, node_sizes, cliques, potentials)
% MK_MNET Make a Markov network (Markov Random Field)
%
% mnet = mk_mnet(adj_mat, node_sizes, cliques, potentials)
%
% cliques{i} is a list of the nodes in clq i
% potentials{i} is a dpot object corresponding to the potential for clique i
%
mnet.markov_net = 1;
mnet.graph = graph;
mnet.node_sizes = node_sizes;
mnet.user_cliques = cliques;
mnet.user_potentials = potentials;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?