经典优化算法之飞蛾扑火(MFO),原理公式详解,附matlab代码

经典优化算法之飞蛾扑火(MFO),原理公式详解,附matlab代码飞蛾扑火优化算法 Moth FlameOptimiz MFO 是一种新型元启发式优化算法 该算法是受飞蛾围绕火焰飞行启发而提出的 具有搜索速度快 寻优能力强的特点

大家好,欢迎来到IT知识分享网。

飞蛾扑火优化算法(Moth-Flame Optimization,MFO)是一种新型元启发式优化算法,该算法是受飞蛾围绕火焰飞行启发而提出的,具有搜索速度快、寻优能力强的特点。该成果于2015年发表在知名SCI期刊Knowledge-Based Systems上。目前谷歌学术上查询被引3575次。

9fd9881fa558a757a504a1cb74c32b1b.png

MFO算法通过飞蛾选择火焰、飞蛾围绕火焰飞行、飞蛾扑焰行为,三个主要操作模拟了飞蛾围绕火焰飞行行为,最后选取最优解。

算法原理

(1)飞蛾选择火焰

飞蛾个体表示着优化问题的候选解,飞蛾在优化空间的位置代表求解优化问题的变量,通过在优化空间中改变位置向量来向全局最佳点靠拢,火焰便是飞蛾到当前迭代次数所找到的最佳位置,矩阵M表示飞蛾的位置,数学模型如下式表示:  其中n代表飞蛾的个数;d代表控制变量的数量(维度);矩阵OM存储飞蛾的适应度值,n代表飞蛾的个数,数学模型如下式表示:  MFO算法中要求每只飞蛾仅利用与之对应的唯一火焰更新其自身位置,从而避免算法陷入局部极值情况,大大增强了算法的全局搜索能力。因此,搜索空间中飞蛾位置与火焰位置是相同维度的变量矩阵矩阵F表示火焰的位置,火焰的适应度值存储在矩阵OF中,数学模型如下式表示:   其中n代表飞蛾的个数;d代表控制变量的数量(维度)。

(2)飞蛾围绕火焰飞行

飞蛾实际上是在搜索空间内移动的搜索个体,每一只飞蛾个体环绕在一个火焰的周围,一旦搜索到更好的解,便更新为下一代中火焰的位置。

MFO算法是近似于优化问题中全局最佳的三元组:  

I是产生一个随机的飞蛾种群和相应的适应度值的函数,其系统模型如下:  P是使飞蛾在搜索空间里移动的主函数。P接受矩阵M,并返回更新后的M。

(3)飞蛾扑焰行为

自然界中具有趋光特性的飞蛾  会朝着距离自身最近的亮光(火焰)  移动。飞蛾扑焰的移动轨迹为选取了对数螺线曲线,算法的对数螺旋曲线定义如下: 这里简单插一嘴:现在很多改进算法都有用到螺旋搜索的思想。可以看到最早的这种螺旋搜索的思想还是来自于飞蛾扑火这种经典算法!不得不感叹一下!

其中:  为飞蛾更新后的位置;Di表示的是第i个飞蛾的位置与第j个火焰的位置之间的距离;b是常量,该常量与螺旋形状相关;t是随机生成的数字,取值区间为[-1,1],当t=-1时飞蛾离火焰最远,当t =1时飞蛾离火焰最近。  

其中:  为飞蛾  与火焰  的距离。

结果展示

以为CEC2005函数集为例,进行结果展示:

b3810145f6c0b4cc3baf5e4e51741923.png

2f924b4917a520d721a1284e439b489b.png

66e73da84f78515f83d28276d2f97ff7.png

0d840d24ec7416fbe7e3470b76e53d5b.png

62d6d9c1ad8e414357e38b9bfef2c053.png

 MATLAB核心代码

%% 淘个代码 %% % 微信公众号搜索:淘个代码,获取更多代码 % 飞蛾扑火优化算法(MFO) function [Best_flame_score,Best_flame_pos,Convergence_curve]=MFO(N,Max_iteration,lb,ub,dim,fobj,handles,value) display('MFO is optimizing your problem'); %Initialize the positions of moths Moth_pos=initialization(N,dim,ub,lb); Convergence_curve=zeros(1,Max_iteration); Iteration=1; % Main loop while Iteration<Max_iteration+1 % Number of flames Eq. (3.14) in the paper Flame_no=round(N-Iteration*((N-1)/Max_iteration)); for i=1:size(Moth_pos,1) % Check if moths go out of the search spaceand bring it back Flag4ub=Moth_pos(i,:)>ub; Flag4lb=Moth_pos(i,:)<lb; Moth_pos(i,:)=(Moth_pos(i,:).*(~(Flag4ub+Flag4lb)))+ub.*Flag4ub+lb.*Flag4lb; % Calculate the fitness of moths Moth_fitness(1,i)=fobj(Moth_pos(i,:)); All_fitness(1,i)=Moth_fitness(1,i); end if Iteration==1 % Sort the first population of moths [fitness_sorted I]=sort(Moth_fitness); sorted_population=Moth_pos(I,:); % Update the flames best_flames=sorted_population; best_flame_fitness=fitness_sorted; else % Sort the moths double_population=[previous_population;best_flames]; double_fitness=[previous_fitness best_flame_fitness]; [double_fitness_sorted I]=sort(double_fitness); double_sorted_population=double_population(I,:); fitness_sorted=double_fitness_sorted(1:N); sorted_population=double_sorted_population(1:N,:); % Update the flames best_flames=sorted_population; best_flame_fitness=fitness_sorted; end % Update the position best flame obtained so far Best_flame_score=fitness_sorted(1); Best_flame_pos=sorted_population(1,:); previous_population=Moth_pos; previous_fitness=Moth_fitness; % a linearly dicreases from -1 to -2 to calculate t in Eq. (3.12) a=-1+Iteration*((-1)/Max_iteration); for i=1:size(Moth_pos,1) for j=1:size(Moth_pos,2) if i<=Flame_no % Update the position of the moth with respect to its corresponsing flame % D in Eq. (3.13) distance_to_flame=abs(sorted_population(i,j)-Moth_pos(i,j)); b=1; t=(a-1)*rand+1; % Eq. (3.12) Moth_pos(i,j)=distance_to_flame*exp(b.*t).*cos(t.*2*pi)+sorted_population(i,j); end if i>Flame_no % Upaate the position of the moth with respct to one flame % Eq. (3.13) distance_to_flame=abs(sorted_population(i,j)-Moth_pos(i,j)); b=1; t=(a-1)*rand+1; % Eq. (3.12) Moth_pos(i,j)=distance_to_flame*exp(b.*t).*cos(t.*2*pi)+sorted_population(Flame_no,j); end end end Convergence_curve(Iteration)=Best_flame_score; if Iteration>2 line([Iteration-1 Iteration], [Convergence_curve(Iteration-1) Convergence_curve(Iteration)],'Color','b') xlabel('Iteration'); ylabel('Best score obtained so far'); drawnow end set(handles.itertext,'String', ['The current iteration is ', num2str(Iteration)]) set(handles.optimumtext,'String', ['The current optimal value is ', num2str(Best_flame_score)]) if value==1 hold on scatter(Iteration*ones(1,N),All_fitness,'.','k') end Iteration=Iteration+1; end

参考文献

[1] Mirjalili S. Moth-flame optimization algorithm: A novel nature-inspired heuristic paradigm[J]. Knowledge-based systems, 2015, 89: 228-249.

完整代码获取方式:后台回复关键字:

TGDM880

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/150395.html

(0)
上一篇 2025-03-19 12:45
下一篇 2025-03-19 13:00

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信