⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unc_n2_ackley.m

📁 it contains many classic Test Problems for Unconstrained Optimization such as camel6,treccani,goldst
💻 M
字号:
function [fval]=unc_n2_Ackley(x)
%reference:
%note that you can get the formulation of unc_n2_Ackley from some
%aritcles,such as
%(1)
%algorithm:
%below code is  edited according to 
%(1)
%
%solution:
% where the bounds are -5<=x1,x2<=5;
% The global minimum is at x*=(0,0)
%and f(x*)=-0.0054618;
%there are about 100 global minima!




%Copyright:
% programmers:oiltowater.
% It comply with the GPL2.0
% Copyright 2006  oiltowater 

x1=x(1,1);
x2=x(2,1);

fval=-20*exp(-0.2*(0.5*(x1.^2+x2.^2))^2)-exp(0.5*(cos(2*pi*x1)+cos(2*pi*x2)))+22.71282;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -