【优化求解】金鹰优化求解算法(GEO)【含Matlab源码 187期】

一、源代码

 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%  
%  Golden Eagle Optimizer (GEO) source codes version 1.0
%  
 
% To use this code in your own project 
% remove the line for 'GetFunctionDetails' function 
% and define the following parameters: 
% fun   : function handle to the .m file containing the objective function
%		  the .m file you define should accept the whole population 'x' 
%		  as input and return a column vector containing objective function 
%		  values of all of the population members
% nvars : number of decision/design variables 
% lb    : lower bound of decision variables (must be of size 1 x nvars)
% ub    : upper bound of decision variables (must be of size 1 x nvars)
%
% GEO will return the following: 
% x     : best solution found 
% fval  : objective function value of the found solution 
% 
 
 
 
%% Inputs 
 
FunctionNumber = 1; % 1-23
 
options.PopulationSize = 50;
options.MaxIterations  = 1000;
 
 
 
%% Run Multi-Objective Golden Eagle Optimizer 
 
[fun,nvars,lb,ub] = GetFunctionDetails (FunctionNumber);
 
options.AttackPropensity = [0.5 ,   2];
options.CruisePropensity = [1   , 0.5];
 
[x,fval,ConvergenceCurve] = GEO (fun,nvars,lb,ub, options);
 
 
 
%% Plot results 
 
PlotResults (fun,lb,ub, FunctionNumber,ConvergenceCurve) 
 
 

二、运行结果

在这里插入图片描述

三、备注

完整代码或者代写添加QQ2449341593。
往期回顾>>>>>>
【优化求解】基于matlab粒子群优化灰狼算法【含Matlab源码 006期】
【优化求解】基于matlab多目标灰狼优化算法MOGWO 【含Matlab源码 007期】
【优化求解】基于matlab粒子群算法的充电站最优布局【含Matlab源码 012期】
【优化求解】基于matlab遗传算法的多旅行商问题【含Matlab源码 016期】
【优化求解】基于matlab遗传算法求最短路径【含Matlab源码 023期】
【优化求解】基于matlab遗传和模拟退火的三维装箱问题【含Matlab源码 031期】
【优化求解】基于matlab遗传算法求解车辆发车间隔优化问题【含Matlab源码 132期】
【优化求解】磷虾群算法【含matlab源码 133期】
【优化求解】差分进化算法【含Matlab源码 134期】
【优化求解】基于matlab约束优化之惩罚函数法【含Matlab源码 163期】
【优化求解】基于matlab改进灰狼算法求解重油热解模型【含Matlab源码 164期】
【优化求解】基于matlab蚁群算法配电网故障定位【含Matlab源码 165期】
【优化求解】基于matalb遗传算法求解岛屿物资补给优化问题【含Matlab源码 172期】
【优化求解】冠状病毒群体免疫优化算法(CHIO)【含Matlab源码 186期】

你可能感兴趣的:(matlab,优化求解)