一、获取代码方式

获取代码方式1:
完整代码已上传我的资源:【优化算法】多目标花朵授粉算法(MOFPA)【含Matlab源码 1594期】

获取代码方式2:
通过订阅紫极神光博客付费专栏,凭支付凭证,私信博主,可获得此代码。

备注:
订阅紫极神光博客付费专栏,可免费获得1份代码(有效期为订阅日起,三天内有效);

二、花朵授粉算法简介

介绍了一种新的元启发式群智能算法——花朵授粉算法(flower pollinate algorithm,FPA)和一种新型的差分进化变异策略——定向变异(targeted mutation,TM)策略。针对FPA存在的收敛速度慢、寻优精度低、易陷入局部最优等问题,提出了一种基于变异策略的改进型花朵授粉算法——MFPA。该算法通过改进TM策略,并应用到FPA的局部搜索过程中,以增强算法的局部开发能力。


三、部分源代码

% --------------------------------------------------------------------    %
% Multiobjective flower pollenation algorithm (MOFPA)                     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Notes: This demo program contains the very basic components of          %
% the multiobjective flower pollination algorithm (MOFPA)                 %
% for bi-objective optimization. It usually works well for                %
% unconstrained functions only. For functions/problems with               %
% limits/bounds and constraints, constraint-handling techniques           %
% should be implemented to deal with constrained problems properly.       %
%                                                                         %   %% Notes: --------------------------------------------------------------- %
% n=# of the solutions in the population
% m=# of objectives, d=# of dimensions
% S or Sol has a size of n by d
% f = objective values of [n by m]
% RnD = Rank of solutions and crowding Distances, so size of [n by 2]    %function [best,fmin,N_iter]=mofpa(para)
% Default parameters
if nargin<1,para=[100 1000 0.8];
end
n=para(1);           % Population size, typically 10 to 25
Iter_max=para(2);    % Max number of iterations
p=para(3);           % probabibility switch% Number of objectives
m=2;
% Rank and distance matrix
RnD=zeros(n,2);
% Dimension of the search variables
d=30;
% Simple lower and upper bounds
Lb=0*ones(1,d);    Ub=1*ones(1,d);%% Initialize the population
for i=1:n,Sol(i,:)=Lb+(Ub-Lb).*rand(1,d); f(i,1:m) = obj_funs(Sol(i,:), m);
end
% Store the fitness or objective values
f_new=f;
%% Sort the initialized population
x=[Sol f];  % combined into a single input
% Non-dominated sorting for the initila population
Sorted=solutions_sorting(x, m,d);
% Decompose into solutions, fitness, rank and distances
Sol=Sorted(:,1:d);
f=Sorted(:,(d+1):(d+m));
RnD=Sorted(:,(d+m+1):end);% Start the iterations -- Flower Algorithm
for t=1:Iter_max,% Loop over all flowers/solutionsfor i=1:n,% Pollens are carried by insects and thus can move in% large scale, large distance.% This L should replace by Levy flights  % Formula: x_i^{t+1}=x_i^t+ L (x_i^t-gbest)if rand>p,%% L=rand;L=Levy(d);     % The best is stored as the first row Sol(1,:) of the sorted solutions dS=L.*(Sol(i,:)-Sol(1,:));S(i,:)=Sol(i,:)+dS;% Check if the simple limits/bounds are OKS(i,:)=simplebounds(S(i,:),Lb,Ub);% If not, then local pollenation of neighbor flowers elseepsilon=rand;% Find random flowers in the neighbourhoodJK=randperm(n);% As they are random, the first two entries also random% If the flower are the same or similar species, then% they can be pollenated, otherwise, no action.% Formula: x_i^{t+1}+epsilon*(x_j^t-x_k^t)S(i,:)=Sol(1,:)+epsilon*(Sol(JK(1),:)-Sol(JK(2),:));% Check if the simple limits/bounds are OKS(i,:)=simplebounds(S(i,:),Lb,Ub);endend % end of for loop%% Evalute the fitness/function values of the new populationfor i=1:n,f_new(i, 1:m) = obj_funs(S(i,1:d),m);if (f_new(i,1:m) <= f(i,1:m)),  f(i,1:m)=f_new(i,1:m);end% Update the current best (stored in the first row)if (f_new(i,1:m) <= f(1,1:m)), Sol(1,1:d) = S(i,1:d); f(1,:)=f_new(i,:);endend % end of for loop%% ! It's very important to combine both populations, otherwise,
%% the results may look odd and will be very inefficient. !
%% The combined population consits of both the old and new solutions
%% So the total size of the combined population for sorting is 2*nX(1:n,:)=[S f_new];            % Combine new solutionsX((n+1):(2*n),:)=[Sol f];      % Combine old solutionsSorted=solutions_sorting(X, m, d);%% Select n solutions among a combined population of 2*n solutionsnew_Sol=Select_pop(Sorted, m, d, n);% Decompose into solutions, fitness and rankingSol=new_Sol(:,1:d);             % Sorted solutionsf=new_Sol(:,(d+1):(d+m));       % Sorted objective valuesRnD=new_Sol(:,(d+m+1):end);     % Sorted ranks and distances%% Running display at each 100 iterationsif ~mod(t,100), disp(strcat('Iterations t=',num2str(t))); plot(f(:, 1), f(:, 2),'ro','MarkerSize',3); % axis([0 1 -0.8 1]);xlabel('f_1'); ylabel('f_2');drawnow;end   end  % end of iterations%% End of the main program %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Application of simple constraints or bounds
function s=simplebounds(s,Lb,Ub)% Apply the lower boundns_tmp=s;I=ns_tmp<Lb;ns_tmp(I)=Lb(I);% Apply the upper bounds J=ns_tmp>Ub;ns_tmp(J)=Ub(J);% Update this new move s=ns_tmp;% Draw n Levy flight sample
function L=Levy(d)
% Levy exponent and coefficient
% For details, see Chapter 11 of the following book:
% Xin-She Yang, Nature-Inspired Optimization Algorithms, Elsevier, (2014).
beta=3/2;
sigma=(gamma(1+beta)*sin(pi*beta/2)/(gamma((1+beta)/2)*beta*2^((beta-1)/2)))^(1/beta);u=randn(1,d)*sigma;v=randn(1,d);step=u./abs(v).^(1/beta);
L=0.1*step; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Make sure all the new solutions are within the limits
function [ns]=findlimits(ns,Lb,Ub)% Apply the lower boundns_tmp=ns;I=ns_tmp < Lb;ns_tmp(I)=Lb(I);% Apply the upper bounds J=ns_tmp>Ub;ns_tmp(J)=Ub(J);% Update this new move ns=ns_tmp;

四、运行结果

五、matlab版本及参考文献

1 matlab版本
2014a

2 参考文献
[1] 包子阳,余继周,杨杉.智能优化算法及其MATLAB实例(第2版)[M].电子工业出版社,2016.
[2]张岩,吴水根.MATLAB优化算法源代码[M].清华大学出版社,2017.

【优化算法】多目标花朵授粉算法(MOFPA)【含Matlab源码 1594期】相关推荐

  1. 【优化布局】基于matlab免疫算法求解充电站最优布局【含Matlab源码 2539期】

    ⛄一.获取代码方式 获取代码方式1: 完整代码已上传我的资源:[生产调度]基于matlab免疫算法求解生产调度零等待问题[含Matlab源码 1178期] 点击上面蓝色字体,直接付费下载,即可. 获取 ...

  2. 【微电网优化】基于matlab粒子群算法求解综合能源系统优化问题【含Matlab源码 1969期】

    一.获取代码方式 获取代码方式1: 完整代码已上传我的资源:[微电网优化]基于matlab粒子群算法求解综合能源系统优化问题[含Matlab源码 1969期] 点击上面蓝色字体,直接付费下载,即可. ...

  3. 【数字信号去噪】基于matlab粒子群算法优化VMD分解分量选择数字信号降噪【含Matlab源码 1979期】

    ⛄一.获取代码方式 获取代码方式1: 完整代码已上传我的资源:[数字信号去噪]基于matlab粒子群算法优化VMD分解分量选择数字信号降噪[含Matlab源码 1979期] 点击上面蓝色字体,直接付费 ...

  4. 【优化布局】免疫算法求解充电站最优布局【含Matlab源码 2539期】

    ⛄一.获取代码方式 获取代码方式1: 完整代码已上传我的资源:[生产调度]基于matlab免疫算法求解生产调度零等待问题[含Matlab源码 1178期] 点击上面蓝色字体,直接付费下载,即可. 获取 ...

  5. 【雷达通信】基于matlab NCP算法SAR回波生成和成像【含Matlab源码 1185期】

    ⛄一.获取代码方式 获取代码方式1: 完整代码已上传我的资源:[雷达通信]基于matlab NCP算法SAR回波生成和成像[含Matlab源码 1185期] 点击上面蓝色字体,直接付费下载,即可. 获 ...

  6. 【配送路径规划】蚁群算法求解配送路径最短问题【含Matlab源码 2222期】

    ⛄一.VRP简介 1 VRP基本原理 车辆路径规划问题(Vehicle Routing Problem,VRP)是运筹学里重要的研究问题之一.VRP关注有一个供货商与K个销售点的路径规划的情况,可以简 ...

  7. 【配送路径规划】基于matlab蚁群算法求解配送路径最短问题【含Matlab源码 2222期】

    ⛄一.VRP简介 1 VRP基本原理 车辆路径规划问题(Vehicle Routing Problem,VRP)是运筹学里重要的研究问题之一.VRP关注有一个供货商与K个销售点的路径规划的情况,可以简 ...

  8. 【PSO三维路径规划】基于matlab粒子群算法融合鸡群算法多无人机三维路径规划【含Matlab源码 1792期】

    一.无人机简介 无人机的航迹规划是指在综合考虑无人机飞行油耗.威胁.飞行区域以及自身物理条件限制等因素的前提下, 为飞行器在飞行区域内规划出从初始点到目标点最优或者满意的飞行航迹, 其本质是一个多约束 ...

  9. 【栅格地图路径规划】基于matlab D星和D星_Lite算法机器人栅格地图路径规划【含Matlab源码 2530期】

    ⛄一.简介 "D*算法"的名称源自 Dynamic A Star,最初由Anthony Stentz于"Optimal and Efficient Path Planni ...

  10. 【PSO三维路径规划】基于matlab粒子群算法无人机山地三维路径规划【含Matlab源码 1405期】

    ⛄一.无人机简介 0 引言 随着现代技术的发展,飞行器种类不断变多,应用也日趋专一化.完善化,如专门用作植保的大疆PS-X625无人机,用作街景拍摄与监控巡察的宝鸡行翼航空科技的X8无人机,以及用作水 ...

最新文章

  1. SpringBoot第十八篇: 定时任务(Scheduling Tasks)
  2. OpenSuse Linux 的单用户模式
  3. 面试常备题---链表总结篇
  4. JavaScript-面向对象详解
  5. VTK:vtkPlotArea用法实战
  6. [系统安全] 九.Windows漏洞利用之MS08-067远程代码执行漏洞复现及深度防御
  7. AI Hero 算法挑战赛,万元奖金等你来拿!
  8. 移动端开发—流式布局
  9. python验证码识别——前处理
  10. 算法的时间复杂度和空间复杂度(java)
  11. 电子游戏销售数据分析
  12. jde 动态添加筛选条件的注意事项
  13. cad字体安装_1.1.2 CAD篇之字体库设置
  14. oracle 客户端 ora-12162,oracle 连接不上ORA-12162: TNS:net service name is incorrectly specified的另外一种可能原因...
  15. 面包屑导航html页面,react怎么实现面包屑导航
  16. 微信小程序开发学习笔记一
  17. linux磁盘坏块 cp报错,Linux磁盘坏道的检测及修复
  18. python如何读取log文件_怎么解决Python读取log文件时报错
  19. xlrd读取多个sheets
  20. c语言 GPS nmealib学习笔记

热门文章

  1. 被误传了数千年的七句话(精简版_转载)
  2. Hbase架构与实现
  3. JVM本地方法栈及native方法
  4. FastJSON 简介及其Map/JSON/String 互转
  5. 借贷记账思考2015.12.28
  6. Android应用app数据请求捕捉三步走
  7. js点击复制兼容Firefox
  8. Visual Studio 开发环境安装与配置
  9. Membership学习(一) Membership介绍[xgluxv]
  10. 05_坐标变换与视觉测量学习笔记