资源简介
包含所有顶级期刊上的多目标优化算法
代码片段和文件信息
function main(varargin)
%main - The interface of PlatEMO
%
% main() runs the GUI of PlatEMO.
%
% main(‘-Name‘Value‘-Name‘Value...) runs one algorithm on a problem
% with the specified parameter setting.
%
% All the acceptable properties:
% ‘-N‘ population size
% ‘-M‘ number of objectives
% ‘-D‘ number of variables
% ‘-evaluation‘ maximum number of evaluations
% ‘-algorithm‘ algorithm function
% ‘-problem‘ problem function
% ‘-operator‘ operator function
% ‘-mode‘ run mode (1.show result 2.save result 3.run outputFcn)
% ‘-run‘ run No.
% ‘-outputFcn‘ function invoked after each generation when mode = 3
% ‘-X_parameter‘ the parameter values of function X % % Example: % main() % main(‘-algorithm‘@NSGAII‘-problem‘@DTLZ2‘-N‘100‘-M‘2)
%-------------------------------------------------------------------------- % Copyright (c) 2016-2017 BIMK Group. You are free to use the PlatEMO for % research purposes. All publications which use this platform or any code % in the platform should acknowledge the use of “PlatEMO“ and reference “Ye % Tian Ran Cheng Xingyi Zhang and Yaochu Jin PlatEMO: A MATLAB Platform % for Evolutionary Multi-objective Optimization [Educational Forum] IEEE % Computational Intelligence Magazine 2017 12(4): 73-87“. %--------------------------------------------------------------------------
cd(fileparts(mfilename(‘fullpath‘))); addpath(genpath(cd)); if isempty(varargin) if verLessThan(‘matlab‘‘8.4‘) errordlg(‘Fail to establish the GUI of PlatEMO since the version of MATLAB is lower than 8.4 (R2014b). You can run PlatEMO without GUI by invoking main() with parameters.‘‘Error‘‘modal‘); else GUI(); end else if verLessThan(‘matlab‘‘7.14‘) error(‘Fail to execute PlatEMO since the version of MATLAB is lower than 7.14 (R2012a). Please update the version of your MATLAB software.‘); else Global = GLOBAL(varargin{:}); Global.Start(); end end end |
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-11-24 12:21 PlatEMO v1.5 (2017-12)\
目录 0 2017-11-24 12:19 PlatEMO v1.5 (2017-12)\Algorithms\
目录 0 2017-11-24 12:17 PlatEMO v1.5 (2017-12)\Algorithms\A-NSGA-III\
文件 1871 2017-10-18 22:03 PlatEMO v1.5 (2017-12)\Algorithms\A-NSGA-III\Adaptive.m
文件 1733 2017-10-18 22:03 PlatEMO v1.5 (2017-12)\Algorithms\A-NSGA-III\ANSGAIII.m
文件 3279 2017-10-18 22:03 PlatEMO v1.5 (2017-12)\Algorithms\A-NSGA-III\EnvironmentalSelection.m
目录 0 2017-11-24 12:17 PlatEMO v1.5 (2017-12)\Algorithms\AGE-II\
文件 1361 2017-10-18 21:57 PlatEMO v1.5 (2017-12)\Algorithms\AGE-II\AGEII.m
文件 1381 2017-10-18 21:58 PlatEMO v1.5 (2017-12)\Algorithms\AGE-II\CrowdingDistance.m
文件 2180 2017-10-18 21:58 PlatEMO v1.5 (2017-12)\Algorithms\AGE-II\EnvironmentalSelection.m
文件 1054 2017-10-18 21:58 PlatEMO v1.5 (2017-12)\Algorithms\AGE-II\MatingSelection.m
文件 777 2017-10-18 21:57 PlatEMO v1.5 (2017-12)\Algorithms\AGE-II\UpdateArchive.m
目录 0 2017-11-24 12:17 PlatEMO v1.5 (2017-12)\Algorithms\AR-MOEA\
文件 1456 2017-10-18 22:04 PlatEMO v1.5 (2017-12)\Algorithms\AR-MOEA\ARMOEA.m
文件 1304 2017-10-18 22:03 PlatEMO v1.5 (2017-12)\Algorithms\AR-MOEA\CalDistance.m
文件 3086 2017-10-18 22:03 PlatEMO v1.5 (2017-12)\Algorithms\AR-MOEA\EnvironmentalSelection.m
文件 2254 2017-10-18 22:03 PlatEMO v1.5 (2017-12)\Algorithms\AR-MOEA\MatingSelection.m
文件 2613 2017-10-18 22:03 PlatEMO v1.5 (2017-12)\Algorithms\AR-MOEA\UpdateRefPoint.m
目录 0 2017-11-24 12:17 PlatEMO v1.5 (2017-12)\Algorithms\BCE-IBEA\
文件 1558 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BCE-IBEA\BCEIBEA.m
文件 1023 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BCE-IBEA\CalFitness.m
文件 999 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BCE-IBEA\EnvironmentalSelection.m
文件 1543 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BCE-IBEA\Exploration.m
文件 1503 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BCE-IBEA\PCSelection.m
目录 0 2017-11-24 12:17 PlatEMO v1.5 (2017-12)\Algorithms\BiGE\
文件 1097 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BiGE\BiGE.m
文件 1438 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BiGE\EnvironmentalSelection.m
文件 1296 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BiGE\Estimation.m
文件 1003 2017-10-18 22:15 PlatEMO v1.5 (2017-12)\Algorithms\BiGE\MatingSelection.m
目录 0 2017-11-24 12:17 PlatEMO v1.5 (2017-12)\Algorithms\CMOPSO\
文件 1098 2017-10-18 23:27 PlatEMO v1.5 (2017-12)\Algorithms\CMOPSO\CMOPSO.m
............此处省略573个文件信息
- 上一篇:模型预测控制学习实用教材
- 下一篇:现代控制工程第五版.pdf
相关资源
- 多目标跟踪源码
- 多目标进化算法CMODE
- 清华大学遗传算法PPT―MOGA
-
Theory of Multiob
jective Optimization - 动态环境下多目标优化免疫算法及其
- 基于OpenCV多目标的模板匹配算法
- MHT算法及其在多传感器跟踪方面的问
- 论文研究-基于多策略排序变异的多目
- 遗传算法的多目标优化问题
- 多目标智能算法测试CF1-CF10 与 UF1-U
- 多目标优化进化算法程序
- 多目标智能优化算法及其应用pdf
- 多目标智能优化算法及其应用-雷德明
- 多目标实时跟踪程序
- 多目标跟踪vs+opencv
- 解多目标规划的单纯形代码
- 有关多目标跟踪的PHD滤波的一些资料
- 网络模型与多目标遗传算法
- 灰狼算法优化svm以及求解多目标规划
- 多目标粒子群算法分享 - CSDN博主dkj
- 带有约束条件的多目标函数最优解方
- 多目标智能优化算法及其应用.zip
- 粒子群优化算法与多目标优化.zip
- 多目标进化优化(2017)-郑金华,邹娟
- 多目标moead优化方法
- 多目标pareto最优解搜索算法
- 多目标整数编码的遗传算法求解集装
- NSGA2多目标优化算法
- 模板匹配多目标检测快速金字塔
- 基于LINGO的多目标规划模型求解
评论
共有 条评论