unc_n1_sin.m

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

M
28
字号
function [fval]=unc_n1_sin(x)
%reference:
%note that you can get the formulation of unc_n1_sin from some
%aritcles,such as
%(1)LN de Castro, FJ Von Zuben 'Learning and optimization using the clonal selection principle '
% Evolutionary Computation, IEEE Transactions on, 2002 
%
%algorithm:
%below code is  edited according to 
%(1)LN de Castro, FJ Von Zuben 'Learning and optimization using the clonal selection principle '
% Evolutionary Computation, IEEE Transactions on, 2002 
%
%solution:
%maximize:
% where the bounds are 0<=x<=1;
%The global minimum is at x*=0.1,0.3,0.5,0.7 or 0.9 .and f(x*)=1;


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

fval=power(sin(5*pi*x),6);
%maximize
fval=-fval;

⌨️ 快捷键说明

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