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

📄 ga_fextra1.m

📁 其中提到遺傳學的程式碼與應用提供給次淚相向的研究者參考下載
💻 M
字号:
function PI=GA_fextra1(chro)
% Fitness function evaluation
% chro is the array transfered from GA for optimization.

% PenChen Chou, 2003-11-12

global MIN_offset MUL_factor

% Set MIN_offset=25 for this problem if not defined and
% You solve for a minimization problem.
if exist('MIN_offset','var'), 
    if isempty(MIN_offset), MIN_offset=25; end
end
% Always to set MAX_factor=1, if you have no idea about
% the meaning of MAX_factor at the first time.
if exist('MUL_factor','var'), 
    if isempty(MUL_factor), MUL_factor=1; end
end

% Fitness function evaluation
x=chro(1); y=chro(2);
PI=x*x*(4-2.1*x*x+x^4/3)+x*y+y*y*(-4+4*y*y);

% attached_part is used to transfer a minimization problem
% into a maximization problem. Input is PI, Output is PI.
attached_part;

⌨️ 快捷键说明

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