鱼鹰算法Osprey Optimization Algorithm求解单目标优化问题附matlab代码
鱼鹰算法Osprey Optimization Algorithm求解单目标优化问题附matlab代码。
✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。
🍎个人主页:Matlab科研工作室
🍊个人信条:格物致知。
更多Matlab仿真内容点击👇
⛄ 内容介绍
鱼鹰算法Osprey Optimization Algorithm求解单目标优化问题附matlab代码
⛄ 部分代码
%%
% Osprey Optimization Algorithm: A new bio-inspired metaheuristic algorithm for solving engineering optimization problems
% Pavel Trojovský1 and Mohammad Dehghani
% Department of Mathematics, Faculty of Science, University of Hradec Králové, 50003 Hradec Králové, Czech Republic
% " Optimizer"
%%
clc
clear
close all
%%
%%
Fun_name='F1'; % number of test functions: 'F1' to 'F23'
SearchAgents=30; % population members
Max_iterations=1000; % maximum number of iteration
[lowerbound,upperbound,dimension,fitness]=fun_info(Fun_name); % Object function information
[Best_score,Best_pos,OOA_curve]=OOA(SearchAgents,Max_iterations,lowerbound,upperbound,dimension,fitness); % Calculating the solution of the given problem using OOA
%%
display(['The best optimal value of the objective funciton found by OOA for ' [num2str(Fun_name)],' is : ', num2str(Best_score)]);
%%
⛄ 运行结果
⛄ 参考文献
⛳️ 完整代码
❤️部分理论引用网络文献,若有侵权联系博主删除
❤️ 关注我领取海量matlab电子书和数学建模资料

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐
所有评论(0)