📄 ga_ex24.m
字号:
% GA_ex24.m file
% Fin max of a function of 2 varaibles
% PenChen Chou, 7-1-2001
%**********************************************************/
% User can modify the following in blocks
%**********************************************************/
global MIN_offset LOCUS x_data y_data
MIN_offset=0; LOCUS=0; x_data=[]; y_data=[];
obj_fcn = 'GA_f24'; % Objective function
range = [-100 -100
100 100]; % Range of the input variables
IC=[]; elite=1;
gen_no=600;
popuSize=70;
%************************************************************
% call GA written by Chang
tic
%GA_genetic(obj_fcn, range, IC, elite,...
% gen_no, popuSize, bit_n, xover_rate, mutate_rate);
[popu, popu_real, fcn_value, upper, average, lower, ...
popuSize, gen_no] = GA_genetic(obj_fcn, range,...
IC, elite, gen_no, popuSize);
t=toc/60;
fprintf('==> Computation time is (%.2f) minutes.\n',t);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -