资源简介

文件包含,多目标灰狼优化算法的完整代码 和论文,代码可直接运行,具有很高的参考价值,提供给大家参考学习。

资源截图

代码片段和文件信息

% cec09.m

% The Matlab version of the test instances for CEC 2009 Multiobjective
%   Optimization Competition.

% Usage: fobj = cec09(problem_name) the handle of the function will be
%   with fobj

% Please refer to the report for correct one if the source codes are not
%   consist with the report.
% History:
%   v1 Sept.08 2008
%   v2 Nov.18  2008
%   v3 Nov.26  2008

function fobj = cec09(name)

    switch name
        case ‘UF1‘
            fobj = @UF1;
        case ‘UF2‘
            fobj = @UF2; 
        case ‘UF3‘
            fobj = @UF3;  
        case ‘UF4‘
            fobj = @UF4;
        case ‘UF5‘
            fobj = @UF5; 
        case ‘UF6‘
            fobj = @UF6;
        case ‘UF7‘
            fobj = @UF7;
        case ‘UF8‘
           

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       18434  2020-10-04 16:04  MOGWO1\cec09.m
     文件        3598  2020-10-04 16:04  MOGWO1\CreateEmptyParticle.m
     文件        3705  2020-10-04 16:04  MOGWO1\CreateHypercubes.m
     文件        3828  2020-10-04 16:04  MOGWO1\DeleteFromRep.m
     文件        3626  2020-10-04 16:04  MOGWO1\DetermineDomination.m
     文件        3348  2020-10-04 16:04  MOGWO1\Dominates.m
     文件        3283  2020-10-04 16:04  MOGWO1\GetCosts.m
     文件        3644  2020-10-04 16:04  MOGWO1\GetGridIndex.m
     文件        3283  2020-10-04 16:04  MOGWO1\GetNonDominatedParticles.m
     文件        3528  2020-10-04 16:04  MOGWO1\GetOccupiedCells.m
     文件        8225  2020-10-04 16:04  MOGWO1\MOGWO.m
     文件     1315332  2020-09-29 19:15  MOGWO1\Multi-objective grey wolf optimizer A novel algorithm for multi-criterion optimization.pdf
     文件       32064  2020-10-04 16:04  MOGWO1\results.mat
     文件        3281  2020-10-04 16:04  MOGWO1\RouletteWheelSelection.m
     文件        3753  2020-10-04 16:04  MOGWO1\SelectLeader.m
     文件        1065  2020-10-04 16:04  MOGWO1\xboundary.m

评论

共有 条评论