function dedemov(action);
% DE function minimization demonstration.
% dedemov is called with no parameters.
%
% Differential Evolution for MATLAB
% Copyright (C) 1996 R. Storn
% International Computer Science Institute (ICSI)
% 1947 Center Street, Suite 600
% Berkeley, CA 94704
% E-mail: storn@icsi.berkeley.edu
% WWW: http://http.icsi.berkeley.edu/~storn
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 1, or (at your option)
% any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details. A copy of the GNU
% General Public License can be obtained from the
% Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
if nargin<1, %---number of arguments less than one ?
action='initialize';
end;
if strcmp(action,'initialize'),
%---Header of Window--------------------------------
figNumber=figure( ...
'Name','Differential Evolution Demo', ...
'NumberTitle','off', ...
'Visible','off');
%---define area for graphics------------------------
axes( ...
'Units','normalized', ...
'Visible','off', ...
'Position',[0.1 0.35 0.60 0.75]);
%---Set up the Comment Window-----------------------
top1=0.25;
left1=0.05;
right1=0.75;
bottom1=0.05;
labelHt1=0.05;
spacing1=0.005;
promptStr=str2mat(' ',...
' This demo shows the track of the best', ...
' population member for each generation.');
%---First, the MiniCommand Window frame------------------------
frmBorder=0.02;
frmPos1=[left1-frmBorder bottom1-frmBorder ...
(right1-left1)+2*frmBorder (top1-bottom1)+2*frmBorder];
uicontrol( ...
'Style','frame', ...
'Units','normalized', ...
'Position',frmPos1, ...
'BackgroundColor',[0.5 0.5 0.5]);
%---Then the text label----------------------------------------
labelPos1=[left1 top1-labelHt1 (right1-left1) labelHt1];
uicontrol( ...
'Style','text', ...
'Units','normalized', ...
'Position',labelPos1, ...
'BackgroundColor',[0.5 0.5 0.5], ...
'ForegroundColor',[1 1 1], ...
'String','Comment Window');
%---Then the editable text field-------------------------------
txtPos1=[left1 bottom1 (right1-left1) top1-bottom1-labelHt1-spacing1];
txtHndl=uicontrol( ...
'Style','edit', ...
'Units','normalized', ...
'Max',10, ...
'BackgroundColor',[1 1 1], ...
'Position',txtPos1, ...
'Callback','dedemov(''eval'')', ...
'String',promptStr);
%---Save the text handle for future use------------------------
set(gcf,'UserData',txtHndl)
%==============================================================
%---Information for all buttons (and menus)--------------------
labelColor=[0.8 0.8 0.8];
yInitPos=0.90;
menutop=0.95;
btnTop = 0.6;
top=0.75;
left=0.785;
btnWid=0.175;
btnHt=0.06;
textHeight = 0.05;
textWidth = 0.06;
%---Spacing between the button and the next command's label
spacing=0.019;
%---The CONSOLE frame------------------------------------------
frmBorder=0.019; frmBottom=0.04;
frmHeight = 0.92; frmWidth = btnWid;
yPos=frmBottom-frmBorder;
frmPos=[left-frmBorder yPos frmWidth+2*frmBorder frmHeight+2*frmBorder];
h=uicontrol( ...
'Style','frame', ...
'Units','normalized', ...
'Position',frmPos, ...
'BackgroundColor',[0.5 0.5 0.5]);
%===Define the individual selection items======================
%---The DE strategy Selection Menu-----------------------------
btnNumber=1;
yPos=menutop-(btnNumber-1)*(btnHt+spacing);
btnPos=[left yPos-btnHt btnWid btnHt];
labelStr='rand/1|best/1|best/2|rtb/1|rand/2';
callbackStr='dedemov(''changemethod'');';
MethodHndl=uicontrol( ...
'Style','popupmenu', ...
'Units','normalized', ...
'Position',btnPos, ...
'String',labelStr, ...
'Interruptible','yes', ...
'Callback',callbackStr);
%---Size of Population NP--------------------------------------
btnNumber=1;
yPos=menutop-(btnNumber-1)*(btnHt+spacing);
top = yPos - btnHt - spacing;
labelWidth = frmWidth-textWidth-.01;
labelBottom=top-textHeight;
labelLeft = left;
labelPos = [labelLeft labelBottom labelWidth textHeight];
h = uicontrol( ...
'Style','text', ...
'Units','normalized', ...
'Position',labelPos, ...
'Horiz','left', ...
'String','NP', ...
'Interruptible','no', ...
'BackgroundColor',[0.5 0.5 0.5], ...
'ForegroundColor','white');
%---Weighting factor F-----------------------------------------
btnNumber=2;
yPos=menutop-(btnNumber-1)*(btnHt+spacing);
top = yPos - btnHt - spacing;
labelWidth = frmWidth-textWidth-.01;
labelBottom=top-textHeight;
labelLeft = left;
labelPos = [labelLeft labelBottom labelWidth textHeight];
h = uicontrol( ...
'Style','text', ...
'Units','normalized', ...
'Position',labelPos, ...
'Horiz','left', ...
'String','F', ...
'Interruptible','no', ...
'BackgroundColor',[0.5 0.5 0.5], ...
'ForegroundColor','white');
%---Crossover probability CR-----------------------------------
btnNumber=3;
yPos=menutop-(btnNumber-1)*(btnHt+spacing);
top = yPos - btnHt - spacing;
labelWidth = frmWidth-textWidth-.01;
labelBottom=top-textHeight;
labelLeft = left;
labelPos = [labelLeft labelBottom labelWidth textHeight];
h = uicontrol( ...
'Style','text', ...
'Units','normalized', ...
'Position',labelPos, ...
'Horiz','left', ...
'String','CR', ...
'Interruptible','no', ...
'BackgroundColor',[0.5 0.5 0.5], ...
'ForegroundColor','white');
%---Maximum number of iterations itermax------------------------
btnNumber=4;
yPos=menutop-(btnNumber-1)*(btnHt+spacing);
top = yPos - btnHt - spacing;
labelWidth = frmWidth-textWidth-.01;
labelBottom=top-textHeight;
labelLeft = left;
labelPos = [labelLeft labelBottom labelWidth textHeight];
h = uicontrol( ...
'Style','text', ...
'Units','normalized', ...
'Position',labelPos, ...
'Horiz','left', ...
'String','itermax', ...
'Interruptible','no', ...
'BackgroundColor',[0.5 0.5 0.5], ...
'ForegroundColor','white');
%---Text field---------------------------------------------------
textPos = [labelLeft+labelWidth-.015 labelBottom textWidth+.025 7*.85*textHeight];
callbackStr = 'dedemov(''setContr'')';
%---Enter the default values-------------------------------------
str = sprintf('15\n\n0.9\n\n0.9\n\n200');
mat = [15; 0.9; 0.9; 200]; % default values
CvarsHndl = uicontrol( ...
'Style','edit', ...
'Units','normalized', ...
'Position',textPos, ...
'Max',2, ... % makes this a multiline edit object
'Horiz','right', ...
'Background','white', ...
'Foreground','black', ...
'String',str,'Userdata',mat, ...
'callback',callbackStr);
%---The INFO button-----------------------------------------------
uicontrol( ...
'Style','push', ...
'Units','normalized', ...
'Position',[left bottom1+btnHt+spacing btnWid btnHt], ...
'String','Info', ...
'Callback','dedemov(''info'')');
%---The CLOSE button--------------------------------------------
uicontrol( ...
'Style','push', ...
'Units','normalized', ...
'Position',[left bottom1 btnWid btnHt], ...
'String','Close', ...
'Callback','close(gcf)');
%---Get Handles--------------------------------------------------
chndlList=[MethodHndl CvarsHndl txtHndl];
%---Now uncover the figure-----------------------------------
set(figNumber, ...
'Visible','on', ...
'UserData',chndlList);
dedemov('demobutton') %---> Go and optimize
return
%===Different actions============================================
%---Modified control variables-----------------------------------
elseif strcmp(action,'setContr'),
v = get(gco,'Userdata');
str = get(gco,'String');
ind = find(abs(str)<32);
str(ind) = 32*ones(size(ind));
str = str';
vv = eval(['[' str(' ']'],'-1')';
if vv == -1
vv = v;
elseif length(vv)~=4 %must be 4 items as specified above
vv = v;
end
str = sprintf('%g\n\n%g\n\n%g\n\n%g\n\n%g\n\n%g',vv(1),vv(2),vv(3),vv(4));%,...
%vv(5), vv(6));
set(gco,'Userdata',vv,'String',str) %take new data
dedemov('demobutton') %---> Go and optimize
return
%---Modified method----------------------------------------------
elseif strcmp(action,'changemethod'),
v = get(gco,'value'); % 1 = DE/rand/1, 2 = DE/best/1, 3 = DE/best/2,
% 4 = DE/rand-to-best/1, 5 = DE/rand/2
chndlList = get(gcf,'UserData');
dedemov('demobutton') %---> Go and optimize
return
%-----Start optimization-----------------------------------
elseif strcmp(action,'demobutton'),
%---Plotting the banana function---------------------------
cla reset;
%axis off;
x=-2:.2:2;
y=-1:.2:3;
[xx,yy]=meshgrid(x,y);
zz=100*(yy-xx.^2).^2+(1-xx).^2;
%---Set up the appropriate colormap--------------------------------------
%---In this case, the colormap has been chosen to give the surface plot--
%---a nice healthy banana color.-----------------------------------------
hsv2=hsv;
hsv3=[hsv2(11:64,; hsv2(1:10,];
%---draw the surface plot-----------------------
surfHndl=surface(x,y,zz,'EdgeColor',[.8 .8 .8]);
axis([-2 2 -2 2]);
text(-1,-3,'x(1)'); %---substitute for xlabel
ylabel('x(2)');
%axis off;
view(10,55);
colormap(hsv3);
hold on;
[c,contHndl]=contour3(x,y,zz+50,[100 500],'k');
set(contHndl,'Color',[.8 .8 .8]);
drawnow
plot3(1,1,0,'ko', ...
'MarkerSize',15, ...
'LineWidth',2, ...
'EraseMode','none');
text(0.8,1.4,0,' goal', ...
'Color',[0 0 0], ...
'EraseMode','none');
%---Get handles----------------------------------------
chndlList=get(gcf,'Userdata');
MethodHndl = chndlList(1);
CvarsHndl = chndlList(2);
txtHndl = chndlList(3);
%---initialize variables-------------------------------
cvars = get(CvarsHndl,'UserData');
NP = cvars(1); % population size
F = cvars(2); % weighting factor
CR = cvars(3); % crossover probability
itermax = cvars(4); % maximum number of iterations
strategy = get(MethodHndl,'value');
D = 2;
%---as a reminder labelStr='rand/1|best/1|best/2|rtb/1';
%---Now run the DE demo eventually---------------------
[bestmem,nfeval]=devec(NP,D,F,CR,itermax,strategy);
str1=sprintf(' x(1) = %d x(2) = %d',bestmem(1),bestmem(2));
str2=sprintf(' Number of function evaluations: %d', nfeval);
%str1=get(txtHndl,'String');
strout=str2mat(str1,' ',str2);
set(txtHndl,'String',strout);
%---Info button----------------------------------------
elseif strcmp(action,'info'),
ttlStr=get(gcf,'Name');
hlpStr= ...
[' '
' This demonstration shows the minimization '
' of Rosenbrock''s "banana function": '
' '
' f(x)= 100*(x(2)-x(1)^2)^2+(1-x(1))^2 '
' '
' by Differential Evolution (DE). DE is a sto- '
' chastic minimization procedure for continuous '
' space functions that may be non-differentiable, '
' nonlinear and multimodal. DE requires just 3 '
' control variables: '
' '
' Number of population members NP '
' Difference vector weight F ex [0, 2] '
' Crossover probability CR ex [0, 1] '
' '
' As a first guess NP=10*(number of parameters) '
' is usually a good choice. '
' '
' File name: dedemov.m '];
helpfun(ttlStr,hlpStr);
end; % if strcmp(action, ...
function [bestmem,nfeval] = devec(NP,D,F,CR,itermax,strategy);
% Run DE minimization
%
% Output arguments:
% ----------------
% bestmem : parameter vector with best solution
% nfeval : number of function evaluations
%
% Input arguments:
% ---------------
% NP : number of population members
% D : number of parameters of the objective
% function
% F : DE-stepsize F ex [0, 2]
% CR : crossover probabililty constant ex [0, 1]
% itermax : maximum number of iterations (generations)
% strategy : 1 --> DE/best/1
% 2 --> DE/rand/1
% 3 --> DE/rand-to-best/1
% 4 --> DE/best/2
% else DE/rand/2
%
% Objective function: has still to be coded into the routine at locations
% designated by >>>>>>>>>>>eval<<<<<<<<<<<<<<<
%
% Example:
% [bestmem,nfeval] = devec(NP,D,F,CR,itermax,strategy);
%
% Used by: dedemov.m
%
% Differential Evolution for MATLAB
% Copyright (C) June 1996 R. Storn
% International Computer Science Institute (ICSI)
% 1947 Center Street, Suite 600
% Berkeley, CA 94704
% E-mail: storn@icsi.berkeley.edu
% WWW: http://http.icsi.berkeley.edu/~storn
%
% devec is a vectorized variant of DE which, however, has two
% properties which differ from the original version of DE:
% 1) The random selection of vectors is performed by shuffling the
% population array. Hence a certain vector can't be chosen twice
% in the same term of the perturbation expression.
% 2) The crossover parameters are chosen randomly, with a probability
% according to a binomial distribution, and need not be adjacent.
% This requires CR usually to be taken larger than in the original
% version of DE.
% Due to the vectorized expressions devec executes fairly fast
% in MATLAB's interpreter environment.
%
% In order to let devec optimize your own objective function you have
% to alter the code as devec was written for simplicity.
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 1, or (at your option)
% any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details. A copy of the GNU
% General Public License can be obtained from the
% Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
%-----Check input variables-----------------------------------------------
if (NP < 5)
fprintf(1,'Error! NP should be >= 5\n');
end
if ((CR < 0) | (CR > 1))
fprintf(1,'Error! CR should be ex [0,1]\n');
end
if (itermax < 0)
fprintf(1,'Error! itermax should be > 0\n');
end
%-----Initialize population and some arrays-------------------------------
pop = zeros(NP,D); %initialize pop to gain speed
lowbound1 = -3; % Lower bound for parameters (all parameters treated alike)
highbound1 = -1; % Upper bound for parameters (all parameters treated alike)
lowbound2 = 1; % Lower bound for parameters (all parameters treated alike)
highbound2 = 3; % Upper bound for parameters (all parameters treated alike)
%----pop is a matrix of size NPxD. It will be initialized-------------
%----with random values between highbound and lowbound----------------
for i=1:NP
pop(i,1) = lowbound1 + rand*(highbound1 - lowbound1);
pop(i,2) = lowbound2 + rand*(highbound2 - lowbound2);
end
popold = zeros(size(pop)); % toggle population
val = zeros(1,NP); % create and reset the "cost array"
bestmem = zeros(1,D); % best population member ever
bestmemit = zeros(1,D); % best population member in iteration
nfeval = 0; % number of function evaluations
%------Evaluate the best member after initialization----------------------
%------Objective function is the Rosenbrock saddle------------------------
%------100*(x2-x1^2)^2+(1-x1)^2.------------------------------------------
ibest = 1; % start with first population member
% >>>>>>>>>>>eval<<<<<<<<<<<<<<<
val(1) = 100*(pop(ibest,2)-pop(ibest,1)^2)^2 + (1-pop(ibest,1))^2;
bestval = val(1); % best objective function value so far
nfeval = nfeval + 1;
for i=2:NP % check the remaining members
% >>>>>>>>>>>eval<<<<<<<<<<<<<<<
val(i) = 100*(pop(i,2)-pop(i,1)^2)^2 + (1-pop(i,1))^2;
nfeval = nfeval + 1;
if (val(i) < bestval) % if member is better
ibest = i; % save its location
bestval = val(i);
end
end
bestmemit = pop(ibest,; % best member of current iteration
bestvalit = bestval; % best value of current iteration
bestmem = bestmemit; % best member ever
xplt(NP,pop,bestmem,1); % 3D-plot function
%------DE-Minimization---------------------------------------------
%------popold is the population which has to compete. It is--------
%------static through one iteration. pop is the newly--------------
%------emerging population.----------------------------------------
pm1 = zeros(NP,D); % initialize population matrix 1
pm2 = zeros(NP,D); % initialize population matrix 2
pm3 = zeros(NP,D); % initialize population matrix 3
pm4 = zeros(NP,D); % initialize population matrix 4
pm5 = zeros(NP,D); % initialize population matrix 5
bm = zeros(NP,D); % initialize bestmember matrix
ui = zeros(NP,D); % intermediate population of perturbed vectors
mui = zeros(NP,D); % mask for intermediate population
mpo = zeros(NP,D); % mask for old population
rot = (0:1:NP-1); % rotating index array
rt = zeros(NP); % another rotating index array
a1 = zeros(NP); % index array
a2 = zeros(NP); % index array
a3 = zeros(NP); % index array
a4 = zeros(NP); % index array
a5 = zeros(NP); % index array
ind = zeros(4);
iter = 1;
while ((iter < itermax) & (bestval > 1.e-6))
popold = pop; % save the old population
ind = randperm(4); % index pointer array
a1 = randperm(NP); % shuffle locations of vectors
rt = rem(rot+ind(1),NP); % rotate indices by ind(1) positions
a2 = a1(rt+1); % rotate vector locations
rt = rem(rot+ind(2),NP);
a3 = a2(rt+1);
rt = rem(rot+ind(3),NP);
a4 = a3(rt+1);
rt = rem(rot+ind(4),NP);
a5 = a4(rt+1);
pm1 = popold(a1,; % shuffled population 1
pm2 = popold(a2,; % shuffled population 2
pm3 = popold(a3,; % shuffled population 3
pm4 = popold(a4,; % shuffled population 4
pm5 = popold(a5,; % shuffled population 5
for i=1:NP % population filled with the best member
bm(i, = bestmemit; % of the last iteration
end
mui = rand(NP,D) < CR; % all random numbers < CR are 1, 0 otherwise
mpo = mui < 0.5; % inverse mask to mui
if (strategy == 1) % DE/best/1
ui = bm + F*(pm1 - pm2); % differential variation
ui = popold.*mpo + ui.*mui; % binomial crossover
elseif (strategy == 2) % DE/rand/1
ui = pm3 + F*(pm1 - pm2); % differential variation
ui = popold.*mpo + ui.*mui; % binomial crossover
elseif (strategy == 3) % DE/rand-to-best/1
ui = popold + F*(bm-popold) + F*(pm1 - pm2);
ui = popold.*mpo + ui.*mui; % binomial crossover
elseif (strategy == 4) % DE/best/2
ui = bm + F*(pm1 - pm2 + pm3 - pm4); % differential variation
ui = popold.*mpo + ui.*mui; % binomial crossover
else % DE/rand/2
ui = pm5 + F*(pm1 - pm2 + pm3 - pm4); % differential variation
ui = popold.*mpo + ui.*mui; % binomial crossover
end
%-----Select which vectors are allowed to enter the new population------------
for i=1:NP
% >>>>>>>>>>>eval<<<<<<<<<<<<<<<
tempval = 100*(ui(i,2)-ui(i,1)^2)^2 + (1-ui(i,1))^2; % check cost of competitor
nfeval = nfeval + 1;
if (tempval <= val(i)) % if competitor is better than value in "cost array"
pop(i,:) = ui(i,:); % replace old vector with new one (for new iteration)
val(i) = tempval; % save value in "cost array"
%----we update bestval only in case of success to save time-----------
if (tempval < bestval) % if competitor better than the best one ever
bestval = tempval; % new best value
bestmem = ui(i,:); % new best parameter vector ever
end
end
end %---end for imember=1:NP
bestmemit = bestmem; % freeze the best member of this iteration for the coming
% iteration. This is needed for some of the strategies.
%----Output section----------------------------------------------------------
if (rem(iter,10) == 0)
fprintf(1,'Iteration: %d, Best: %f, F: %f, CR: %f, NP: %d\n',iter,bestval,F,CR,NP);
for n=1
fprintf(1,'best(%d) = %f\n',n,bestmem(n));
end
end
%----Continue plotting-------------------------------------------------------
xplt(NP,pop,bestmem,1); % 3D-plot function
iter = iter + 1;
end %---end while ((iter < itermax) ...
function out = xplt(NP,pop,vec,flag)
% xplt plots a coloured point with coordinates vec(1), vec(2)
% on a 3D-surface if flag is not equal 0. Otherwise NP colored
% points, stored in pop, will be plotted.
%
% Example: xplt(NP,pop)
% where pop is a two-dimensional array of NP points
%
%
% Used by: der.m
if (flag == 0) %---draw entire population----------
for i=1:NP
x1=pop(i,1);
x2=pop(i,2);
z1=100*(x2-x1.^2).^2+(1-x1).^2;
plot3(x1,x2,z1,'r.', ...
'EraseMode','none', ...
'MarkerSize',15);
drawnow; %---Draws current graph now
out = [];
end
else
x1 = vec(1);
x2 = vec(2);
z1=100*(x2-x1.^2).^2+(1-x1).^2;
plot3(x1,x2,z1,'r.', ...
'EraseMode','none', ...
'MarkerSize',15);
drawnow; %---Draws current graph now
out = [];
end
function [bestmem,bestval,nfeval] = devec3(fname,VTR,D,XVmin,XVmax,y,NP,itermax,F,CR,strategy,refresh);
% minimization of a user-supplied function with respect to x(1),
% using the differential evolution (DE) algorithm of Rainer Storn
% (http://www.icsi.berkeley.edu/~storn/code.html)
%
% Special thanks go to Ken Price (kprice@solano.community.net) and
% Arnold Neumaier (http://solon.cma.univie.ac.at/~neum/) for their
% valuable contributions to improve the code.
%
% Strategies with exponential crossover, further input variable
% tests, and arbitrary function name implemented by Jim Van Zandt
% <jrv@vanzandt.mv.com>, 12/97.
%
% Output arguments:
% ----------------
% bestmem parameter vector with best solution
% bestval best objective function value
% nfeval number of function evaluations
%
% Input arguments:
% ---------------
%
% fname string naming a function f(x,y) to minimize
% VTR "Value To Reach". devec3 will stop its minimization
% if either the maximum number of iterations "itermax"
% is reached or the best parameter vector "bestmem"
% has found a value f(bestmem,y) <= VTR.
% D number of parameters of the objective function
% XVmin vector of lower bounds XVmin(1) ... XVmin(D)
% of initial population
% *** note: these are not bound constraints!! ***
% XVmax vector of upper bounds XVmax(1) ... XVmax(D)
% of initial population
% y problem data vector (must remain fixed during the
% minimization)
% NP number of population members
% itermax maximum number of iterations (generations)
% F DE-stepsize F from interval [0, 2]
% CR crossover probability constant from interval [0, 1]
% strategy 1 --> DE/best/1/exp 6 --> DE/best/1/bin
% 2 --> DE/rand/1/exp 7 --> DE/rand/1/bin
% 3 --> DE/rand-to-best/1/exp 8 --> DE/rand-to-best/1/bin
% 4 --> DE/best/2/exp 9 --> DE/best/2/bin
% 5 --> DE/rand/2/exp else DE/rand/2/bin
% Experiments suggest that /bin likes to have a slightly
% larger CR than /exp.
% refresh intermediate output will be produced after "refresh"
% iterations. No intermediate output will be produced
% if refresh is < 1
%
% The first four arguments are essential (though they have
% default values, too). In particular, the algorithm seems to
% work well only if [XVmin,XVmax] covers the region where the
% global minimum is expected. DE is also somewhat sensitive to
% the choice of the stepsize F. A good initial guess is to
% choose F from interval [0.5, 1], e.g. 0.8. CR, the crossover
% probability constant from interval [0, 1] helps to maintain
% the diversity of the population and is rather uncritical. The
% number of population members NP is also not very critical. A
% good initial guess is 10*D. Depending on the difficulty of the
% problem NP can be lower than 10*D or must be higher than 10*D
% to achieve convergence.
% If the parameters are correlated, high values of CR work better.
% The reverse is true for no correlation.
%
% default values in case of missing input arguments:
% VTR = 1.e-6;
% D = 2;
% XVmin = [-2 -2];
% XVmax = [2 2];
% y=[];
% NP = 10*D;
% itermax = 200;
% F = 0.8;
% CR = 0.5;
% strategy = 7;
% refresh = 10;
%
% Cost function: function result = f(x,y);
% has to be defined by the user and is minimized
% w.r. to x(1).
%
% Example to find the minimum of the Rosenbrock saddle:
% ----------------------------------------------------
% Define f.m as:
% function result = f(x,y);
% result = 100*(x(2)-x(1)^2)^2+(1-x(1))^2;
% end
% Then type:
%
% VTR = 1.e-6;
% D = 2;
% XVmin = [-2 -2];
% XVmax = [2 2];
% [bestmem,bestval,nfeval] = devec3("f",VTR,D,XVmin,XVmax);
%
% The same example with a more complete argument list is handled in
% run1.m
%
% About devec3.m
% --------------
% Differential Evolution for MATLAB
% Copyright (C) 1996, 1997 R. Storn
% International Computer Science Institute (ICSI)
% 1947 Center Street, Suite 600
% Berkeley, CA 94704
% E-mail: storn@icsi.berkeley.edu
% WWW: http://http.icsi.berkeley.edu/~storn
%
% devec is a vectorized variant of DE which, however, has a
% propertiy which differs from the original version of DE:
% 1) The random selection of vectors is performed by shuffling the
% population array. Hence a certain vector can't be chosen twice
% in the same term of the perturbation expression.
%
% Due to the vectorized expressions devec3 executes fairly fast
% in MATLAB's interpreter environment.
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 1, or (at your option)
% any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU G
【轉(zhuǎn)貼】matlab的差分算法實(shí)現(xiàn)以及蟻群算法介紹
來源:互聯(lián)網(wǎng) 發(fā)布日期:2011-10-01 20:05:47 瀏覽:131751次
導(dǎo)讀:研學(xué)論壇 function dedemov(action);% DE function minimization demonstration.% dedemov is called with no parameters.%% Differential Evolution for MATLA...
相關(guān)內(nèi)容
- 劍橋大學(xué)研究:AI可能會被用來操控用戶的選擇,相關(guān)數(shù)據(jù)或被出售
- 大模型時代,沒有超級應(yīng)用,只有超級智能,為什么?
- 機(jī)構(gòu)報告:2026年中國AI大模型市場規(guī)模將突破700億元
- 未來智能COO王超:人工智能新浪潮下,AI硬件如何破局
- 2024 大模型年度五問:等不來GPT 5怎么過?
- AI掌控編碼人類狂按Tab,軟件工程自主時代來臨!OpenAI董事長Taylor重磅長文
- 喬治·斯穆特:AI正在重新定義我們的未來|比亞迪·封面對話諾獎得主
- AI明年有望迎“突破性進(jìn)展”:“破解”動物叫聲背后的溝通結(jié)構(gòu)
- 最快5秒光速出片,全球首個接近實(shí)時生成的AI視頻模型來了
- 一場化工AI大賽,點(diǎn)亮行業(yè)智能化的星星之火
- 從AI遠(yuǎn)見到中國速度:Scaling Law發(fā)現(xiàn)者為何引全球熱議?
- 2024年人工智能年終總結(jié)報告|Artificial Analysis
- AI明年有望迎“突破性進(jìn)展”:“破解”動物叫聲背后的溝通結(jié)構(gòu)
- 中信建投:隨著AI算力需求提升 建議重點(diǎn)關(guān)注IDC產(chǎn)業(yè)鏈
- 前谷歌CEO:中國會成為AI最終贏家
- 成都東湖畔暢談AI未來,人工智能的新路徑在何方?
- “全球最嚴(yán)AI新規(guī)”再次迭代教育邊界
- 國產(chǎn)大模型DeepSeek疑翻車:自稱是ChatGPT
- 大模型價格戰(zhàn)硝煙再起,阿里云:通義千問視覺理解模型直降80%
- 國內(nèi)各大AI產(chǎn)品功能橫向?qū)Ρ燃笆褂媒ㄗh(2024年12月):文本生成、圖片生成&圖片處理、智能體篇更新匯總
AiLab云推薦
最新資訊
- 2024 大模型年度五問:等不來GPT 5怎么過?
- 全面打破GPT-4壟斷、DeepSeek打下訓(xùn)練成本...2024年大模型領(lǐng)域進(jìn)展全復(fù)盤
- MLPerf Storage v1.0深度解析:浪潮信息AI存儲性能測試的領(lǐng)先之道
- 冷眼與嘲諷之后,谷歌的AI大模型翻盤之路
- 大模型的2024,這可能是最早的一篇年度總結(jié)文
- 對話清華大學(xué)長聘副教授崔鵬:未來3~5年是打造安全、可信AI的黃金期
- 2025生成式AI平臺交互體驗(yàn)觀察(大語言模型篇)
- 大模型時代,沒有超級應(yīng)用,只有超級智能,為什么?
- 國產(chǎn)大模型DeepSeek疑翻車:自稱是ChatGPT
- AI爆火兩年,技術(shù)飛快跑,大模型突破商業(yè)化困局了嗎?
本月熱點(diǎn)
- 谷歌據(jù)悉要求美國聯(lián)邦貿(mào)易委員會解除微軟云對OpenAI技術(shù)的獨(dú)家托管
- 2024年媒體十大流行語:新質(zhì)生產(chǎn)力和人工智能等入選
- 今年 25% 的歐洲風(fēng)投資金流向 AI 初創(chuàng)企業(yè)
- “高校人人學(xué)AI”時代,升級AI通識教育老師先卷起來
- 前OpenAI首席研究官:AI下一步是什么?
- 對越南來說,人工智能可以帶來怎樣的改變|SEA Now
- 三大AI頂流,爭著“造世界”
- 大模型已進(jìn)入應(yīng)用階段 專家:算法脆弱性、算法漏洞等問題仍待解
- AI大模型評測:豆包中文對話最強(qiáng),OpenAI o1推理和數(shù)學(xué)占優(yōu)
- 第一批入局AI智能體的人,他們怎么樣了
熱門排行
-
馬斯克的xAI連發(fā)兩款新模型,有進(jìn)步但還談不上領(lǐng)先
閱讀量:90883
-
阿里團(tuán)隊推出 Tora 視頻 AI 生成框架:畫圈操控物體運(yùn)行軌跡
閱讀量:13640
-
Meta 構(gòu)建分布式 RoCEv2 網(wǎng)絡(luò):探索串聯(lián)數(shù)萬片 GPU 訓(xùn)練 AI
閱讀量:10343
-
AI風(fēng)險誰來防護(hù)?圖靈獎得主:還是AI
閱讀量:8227
-
新專利暗示蘋果探索手記應(yīng)用未來,借助 AI 讓用戶記錄美好時刻
閱讀量:7173
-
科學(xué)家揭示數(shù)據(jù)驅(qū)動型大模型的三大問題,并指出發(fā)展多語言AI的緊迫性
閱讀量:7055