📄 calculatefitnessvalue.m
字号:
function [ Fitness ] = CalculateFitnessValue( Value , Vmax , Vmin , FunctionMode)
% To calculate fitness value
% FunctionMode :
% >= 0 find the maximum of the function
% < 0 find the minimum of the function
% Fitness is big than 0
if FunctionMode >= 0
if (Value + Vmin) > 0
Fitness = Value + Vmin ;
else
Fitness = 0;
end
else
if Value < Vmax
Fitness = Vmax - Value ;
else
Fitness = 0;
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -