1 内容介绍

【智能优化算法-红风筝优化算法】基于红风筝优化算法求解单目标优化问题附matlab代码

2 部分代码

clear all;

close all;

clc;

Function_name = 'F2';   % function name

Npop = 50;      % Number of search agents

Max_it = 1000;  % Maximum number of iterations

[lb,ub,nD,fobj]=Get_Functions_details(Function_name);

[xposbest,fvalbest,Curve]=ROA(Npop,Max_it,lb,ub,nD,fobj);

figure('Position',[500 500 660 290])

subplot(1,2,1);

func_plot(Function_name);

title('Objective space')

xlabel('x_1');

ylabel('x_2');

zlabel([Function_name,'( x_1 , x_2 )'])

subplot(1,2,2);

semilogy(Curve,'Color','r');

hold on

title('Objective space')

xlabel('Iterations');

ylabel('Best score');

3 运行结果

【智能优化算法-红风筝优化算法】基于红风筝优化算法求解单目标优化问题附matlab代码_matlab代码

【智能优化算法-红风筝优化算法】基于红风筝优化算法求解单目标优化问题附matlab代码_优化算法_02

【智能优化算法-红风筝优化算法】基于红风筝优化算法求解单目标优化问题附matlab代码_matlab代码_03

4 参考文献

部分理论引用网络文献,若有侵权联系博主删除。