Location:
Search - PBIL
Search list
Description: 基于生物地理优化进化算法(BBO)代码,以及几组测试函数;使用方法: 输入BBO(@函数名),如BBO(@QuarticDisc)
)-matlab code for biography-based algorithm.
The software can be run by typing the following MATLAB command:
BBO(@"function name")
Platform: |
Size: 1101824 |
Author: 向健 |
Hits:
Description: EDA经典算法PBIL程序,与大家分,共同进步-PBIL algorithm EDA classical procedures, and that we can progress together
Platform: |
Size: 1024 |
Author: 迁回 |
Hits:
Description: 分布估计算法的PBIL算法源码。新型的进化算法。-The resource of the PBIL algorithm among Estimation of Distribution Algorithms is uploaded. Estimation of Distribution Algorithms is a novel type of evolutionary algorithms.
Platform: |
Size: 1024 |
Author: 方晓平 |
Hits:
Description: 该资源详细地给出了分布估计算法的PBIL算法的具体流程。供学习分布估计算的人参考使用。- PBIL algorithm
clc
clear
clf
tic 开始计时
参数设置
Pop_Size=40
Individual_Len=20 每个变量的长度
Variable_Num=2
Learning_Rate=0.01
Iteration_Times=50
I=1
产生初始种群
Binary_X=zeros(Pop_Size,Variable_Num,Individual_Len)
for i=1:1:Pop_Size
for j=1:1:Variable_Num
for k=1:1:Individual_Len
Binary_X(i,j,k)=round(rand())
end
end
end
Best_Individual=zeros(1,Iteration_Times)
Probability_Vector=zeros(Iteration_Times,Variable_Num,Individual_Len)
traces=zeros(3,Iteration_Times) 追踪每一代的最优值
Platform: |
Size: 1024 |
Author: 111 |
Hits:
Description: 分布估计算法源代码,PBIL源代码,变量不相关。-EDA PBIL
Platform: |
Size: 532480 |
Author: 李浩然 |
Hits:
Description: 用PBIL(种群增量学习)算法进行任务规划(Task planning based on PBIL (population incremental learning) algorithm)
Platform: |
Size: 289792 |
Author: 一颗土豆梨 |
Hits: