优化算法饥饿游戏搜索算法(HGS)含Matlab源码 1802期
Posted 紫极神光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了优化算法饥饿游戏搜索算法(HGS)含Matlab源码 1802期相关的知识,希望对你有一定的参考价值。
一、获取代码方式
获取代码方式1:
完整代码已上传我的资源:【优化算法】饥饿游戏搜索算法(HGS)【含Matlab源码 1802期】
二、部分源代码
% Hunger Games Search (HGS)
%
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clear all %#ok<CLALL>
close all
clc
N=30; % Number of search agents
Function_name='F11'; % Name of the test function, range from F1-F13
FEs=100; % Maximum number of evaluation times
dimSize = 30; %dimension size
% Load details of the selected benchmark function
[lb,ub,dim,fobj]=Get_Functions_HGS(Function_name,dimSize);
[Destination_fitness,bestPositions,Convergence_curve]=HGS(N,FEs,lb,ub,dim,fobj);
%Draw objective space
figure,
hold on
semilogy(Convergence_curve,'Color','b','LineWidth',4);
title('Convergence curve')
xlabel('Iteration');
ylabel('Best fitness obtained so far');
axis tight
grid off
box on
legend('HGS')
display(['The best location of HGS is: ', num2str(bestPositions)]);
display(['The best fitness of HGS is: ', num2str(Destination_fitness)]);
三、运行结果
四、matlab版本及参考文献
1 matlab版本
2014a
2 参考文献
[1] 包子阳,余继周,杨杉.智能优化算法及其MATLAB实例(第2版)[M].电子工业出版社,2016.
[2]张岩,吴水根.MATLAB优化算法源代码[M].清华大学出版社,2017.
以上是关于优化算法饥饿游戏搜索算法(HGS)含Matlab源码 1802期的主要内容,如果未能解决你的问题,请参考以下文章
优化算法基于matlab内存进化算子和局部搜索改进灰狼优化算法含Matlab源码 2378期
优化算法爬虫搜索算法(RSA)含Matlab源码 1838期
优化算法天牛须搜索优化粒子群算法含Matlab源码 1256期