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

📄 findlistcliqacccard.m

📁 UMDA. a kind of estimation of distribution algorithm , which is the improvement of genetic algorithm
💻 M
字号:
function[ListCliqAccCard] = FindListCliqAccCard(totcliq,ListCliques,Card)% Calculates de accumulative cardinalities for all the cliques, and the dimension of the probability tables% All the information is saved ListCliqAccCard ListCliqAccCard = zeros(size(ListCliques));     for i=1:totcliq,         sizecliq = ListCliques(i,1);         cliq = ListCliques(i,3:sizecliq+2);         AccCard = FindAccCard(sizecliq,Card(cliq));         ListCliqAccCard(i,1) =  NumconvertCard(Card(cliq)-1,sizecliq,AccCard)+1; % Size of the table for cliq1	 ListCliqAccCard(i,2:sizecliq+1) =  AccCard;     end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -