unc_n2_sin.m

来自「it contains many classic Test Problems f」· M 代码 · 共 37 行

M
37
字号
function [fval]=unc_n2_sin(x)
%reference:
%note that you can get the formulation of unc_n2_sin from some
%aritcles,such as
%(1)LS Zhang, CK Ng, D Li, WW Tian  'A New Filled Function Method for Global Optimization',
%Journal of Global Optimization,Problem 1
%
%algorithm:
%below code is  edited according to 
%(1)LS Zhang, CK Ng, D Li, WW Tian  'A New Filled Function Method for Global Optimization',
%Journal of Global Optimization,Problem 1
%
%solution:
% where the bounds are 0<=x1<=10,-10<=x2<=0;
%the global minimum is at x*=(1,0),and f(x*)= 0;



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


c=0.2;
%  c=0.5;
%  c=0.05;
if size(x,1)~=2, 
    error('the row number of x is 2');
end
x1=x(1,1);
x2=x(2,1);

fval=(1-2*x2+c*sin(4*pi*x2)-x1).^2+(x2-0.5*sin(2*pi*x1)).^2;


⌨️ 快捷键说明

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