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

📄 calculatefitnessvalue.m

📁 X(t)=Asin(2*pi *f *t+ q)+n(t) 估计其中的参数为A
💻 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 + -