资源简介
这是以下论文的matlab源代码:Sankalap Arora,Satvir Singh,“蝴蝶优化算法:全局优化的新方法” DOI:https://doi.org/10.1007/s00500-018-3102-4。资源里包含该论文原件和matlab代码
代码片段和文件信息
%_____________________________________________________________________________________________ %
% Butterfly Optimization Algorithm (BOA) source codes demo V1.0 %
% %
% Author and programmer: Sankalap Arora %
% %
% e-Mail: sankalap.arora@gmail.com %
% %
% Main paper: Sankalap Arora Satvir Singh %
% Butterfly optimization algorithm: a novel approach for global optimization %
% Soft Computing in press %
% DOI: https://doi.org/10.1007/s00500-018-3102-4 %
%___________________________________________________________________________________________ %
%
function [fminbest_posConvergence_curve]=BOA(nN_iterLbUbdimfobj)
% n is the population size
% N_iter represnets total number of iterations
p=0.8; % probabibility switch
power_exponent=0.1;
sensory_modality=0.01;
%Initialize the positions of search agents
Sol=initialization(ndimUbLb);
for i=1:n
Fitness(i)=fobj(Sol(i:));
end
% Find the current best_pos
[fminI]=min(Fitness);
best_pos=Sol(I:);
S=Sol;
% Start the iterations -- Butterfly Optimization Algorithm
for t=1:N_iter
for i=1:n % Loop over all butterflies/solutions
%Calculate fragrance of each butterfly which is correlated with objective function
Fnew=fobj(S(i:));
FP=(sensory_modality*(Fnew^power_exponent));
%Global or local search
if rand dis = rand * rand * best_pos - Sol(i:); %Eq. (2) in paper
S(i:)=Sol(i:)+dis*FP;
else
% Find random butterflies in the neighbourhood
epsilon=rand;
JK=randperm(n);
dis=epsilon*epsilon*Sol(JK(1):)-Sol(JK(2):);
S(i:)=Sol(i:)+dis*FP; %Eq. (3) in paper
end
% Check if the simple limits/bounds are OK
S(i:)=simplebounds(S(i:)LbUb);
% Evaluate new solutions
Fnew=fobj(S(i:)); %Fnew represents new fitness values
% If fitness improves (better solutions found) update then
if (Fnew<=Fitness(i))
Sol(i:)=S(i:);
Fitness(i)=Fnew;
end
% Update the current global best_pos
if Fnew<=fmin
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3577 2018-10-14 10:36 upload\BOA.m
文件 1533937 2018-10-14 10:36 upload\Butterfly optimization algorithm.pdf
文件 1502 2018-10-14 10:36 upload\Get_Functions_details.m
文件 1488 2018-10-14 10:36 upload\initialization.m
文件 1468 2018-10-14 10:36 upload\license.txt
文件 1833 2018-10-14 10:36 upload\main.m
文件 1468 2018-10-14 10:36 license.txt
相关资源
- 非均匀材料的多尺度均匀化matlab程序
- matlab身份证号码识别毕业设计答辩演
- 无人驾驶车辆模型预测直线轨迹跟踪
- matlab地震波数值模拟
- 基于MATLAB的倒谱程序
- 加入噪声的中值滤波代码
- 利用BP神经网络实现手写体数字识别
- 基于Matlab行人检测系统
- 加权平均 图像融合MATLAB算法 含融合源
- 悉尼大学停车场SLAM matlab
- Aloha系统MATLAB仿真代码
- 混凝土抗压强度预测_SVM_Matlab_归一_
- MATLAB之LSTM预测
- mtsp源代码MATLAB
- matlab高斯投影正反算程序
- MATLAB识别指针式仪表的示数
- EEMD集成经验模态分解matlab程序.rar
- 小波滤波,可用于心电信号、脉搏波
- MATLAB 人脸检测定位算法
- 烟花算法 (Fireworks Algorithm),缩写为
- Matlab考试题库加答案
- 基于matlab的扑克牌识别
- CT反投影重建算法
- 基于MATLAB计算两平行线圈的互感
- matlab条码识别
- 利用BP神经网络对图像提取的MATLAB代码
- 元胞自动机之森林火灾升级版MATLAB代
- 6自由度机器人正逆运动学matlab
- MATLAB 灰度共生矩阵特征提取
- 机器人焊接轨迹规划matlab仿真程序
评论
共有 条评论