在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → MOEA/D模型MATLAB代码(针对连续型函数)

MOEA/D模型MATLAB代码(针对连续型函数)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:101.92M
  • 下载次数:6
  • 浏览次数:275
  • 发布时间:2021-11-16
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
Contents are :DHRS-MOEAD EI e-MOEA GrEA HypE I-DBEA MOEAD-DE MOEAD-DRA MOEAD-M2M NSGA-II NSGA-III NSLS PICEA-g SIEA SPEA2 SPEA2-SDE
【实例截图】
【核心代码】
16359647350309756033.rar
└── MOEAD模型(连续型代码)
├── EAG-MOEAD(2)
│   └── EAG-MOEAD-master
│   ├── An External Archive Guided Multiobjective Evolutionary Algorithm Based on Decomposition for Combinatorial Optimization.pdf
│   ├── eag-moead-monrp
│   │   ├── evaluate.m
│   │   ├── genetic_op.m
│   │   ├── getproblem.m
│   │   ├── get_structure.m
│   │   ├── init.m
│   │   ├── loadparams.m
│   │   ├── moead.m
│   │   ├── monrp.m
│   │   ├── NSGA_sorting.m
│   │   ├── randomData_cust100_req1000.mat
│   │   ├── randompoint.m
│   │   ├── random_shuffle.m
│   │   ├── subobjective.m
│   │   └── testmop.m
│   ├── eag-moead-tsp
│   │   ├── evaluate.m
│   │   ├── genetic_op.m
│   │   ├── get_structure.m
│   │   ├── init.m
│   │   ├── loadparams.m
│   │   ├── moead.m
│   │   ├── monrp.m
│   │   ├── NSGA_sorting.m
│   │   ├── randompoint.m
│   │   ├── random_shuffle.m
│   │   ├── subobjective.m
│   │   ├── testmop.m
│   │   └── tsp200.mat
│   ├── EAG-MOEAD.zip
│   └── README.md
├── EAG-MOEAD(2).zip
├── EAG-MOEAD-master.zip
├── MOEAD
│   ├── evaluate.m
│   ├── evolution.m
│   ├── fixnew.m
│   ├── gaussian_mutate.m
│   ├── Init.m
│   ├── Init_weights.m
│   ├── main.m
│   ├── MOEAD
│   │   ├── evaluate.m
│   │   ├── evolution.m
│   │   ├── fixnew.m
│   │   ├── gaussian_mutate.m
│   │   ├── Init.m
│   │   ├── Init_weights.m
│   │   ├── main.m
│   │   └── updates.m
│   └── updates.m
├── MOEAD-chinese-comments-code(3)
│   └── MOEAD-chinese-comments-code-master
│   ├── demo.m
│   ├── evaluate.m
│   ├── eval_update.m
│   ├── gaussian_mutate.m
│   ├── genetic_op.m
│   ├── get_structure.m
│   ├── init_weights.m
│   ├── moead.m
│   ├── octave-workspace
│   ├── randompoint.m
│   ├── README.md
│   ├── realmutate.m
│   ├── subobjective.m
│   ├── test_a.m
│   └── testmop.m
├── MOEAD-chinese-comments-code(3).zip
├── MOEAD-chinese-comments-code-master.zip
├── MOEA-dev-matser
│   ├── A
│   │   ├── F_distance.m
│   │   ├── F_front.m
│   │   └── MAIN.m
│   ├── B
│   │   └── MAIN.m
│   ├── DHRS-MOEAD
│   │   └── MAIN.m
│   ├── EI
│   │   ├── MAIN.m
│   │   ├── MOEA_Alpha.m
│   │   ├── MOEA_Beta.m
│   │   └── test1.m
│   ├── e-MOEA
│   │   ├── F_archive.m
│   │   ├── MAIN.m
│   │   └── ε-MOEA.pdf
│   ├── GrEA
│   │   ├── F_choose.m
│   │   ├── F_mating.m
│   │   ├── GrEA.pdf
│   │   └── MAIN.m
│   ├── HypE
│   │   ├── F_choose.m
│   │   ├── F_HyperExact.m
│   │   ├── F_mating.m
│   │   ├── HypE.pdf
│   │   └── MAIN.m
│   ├── I-DBEA
│   │   ├── F_intercept.m
│   │   ├── F_weight.m
│   │   ├── I-DBEA.pdf
│   │   └── MAIN.m
│   ├── Main.m
│   ├── MOEAD
│   │   ├── F_generator.m
│   │   ├── F_weight.m
│   │   ├── MAIN.m
│   │   └── MOEAD.pdf
│   ├── MOEAD-DE
│   │   ├── F_generator.m
│   │   ├── F_weight.m
│   │   ├── MAIN.m
│   │   └── MOEAD-DE.pdf
│   ├── MOEAD-DRA
│   │   ├── F_generator.m
│   │   ├── F_subvalue.m
│   │   ├── F_weight.m
│   │   ├── MAIN.m
│   │   └── MOEAD-DRA.pdf
│   ├── MOEAD-M2M
│   │   ├── F_allocation.m
│   │   ├── F_generator.m
│   │   ├── F_weight.m
│   │   ├── MAIN.m
│   │   └── MOEAD-M2M.pdf
│   ├── NSGA-II
│   │   ├── F_distance.m
│   │   ├── F_mating.m
│   │   ├── MAIN.m
│   │   └── NSGA-II.pdf
│   ├── NSGA-III
│   │   ├── F_choose.m
│   │   ├── F_mating.m
│   │   ├── F_weight.m
│   │   ├── MAIN.m
│   │   └── NSGA-III.pdf
│   ├── NSLS
│   │   ├── F_choose.m
│   │   ├── F_generator.m
│   │   ├── MAIN.m
│   │   └── NSLS.pdf
│   ├── PESA-II
│   │   ├── F_delete.m
│   │   ├── F_mating.m
│   │   ├── MAIN.m
│   │   └── PESA-Ⅱ.pdf
│   ├── PICEA-g
│   │   ├── F_choose.m
│   │   ├── F_Ggene.m
│   │   ├── F_mating.m
│   │   ├── MAIN.m
│   │   └── PICEA-g.pdf
│   ├── Public
│   │   ├── MOKP
│   │   │   ├── 2-250.mat
│   │   │   ├── 2-500.mat
│   │   │   ├── 2-750.mat
│   │   │   ├── 3-250.mat
│   │   │   ├── 3-500.mat
│   │   │   ├── 3-750.mat
│   │   │   ├── 4-250.mat
│   │   │   ├── 4-500.mat
│   │   │   └── 4-750.mat
│   │   ├── P_draw.m
│   │   ├── P_evaluate.m
│   │   ├── P_generator.m
│   │   ├── P_objective.m
│   │   ├── P_output.m
│   │   ├── P_settings.m
│   │   ├── P_sort.m
│   │   └── Start.m
│   ├── README.md
│   ├── round2.m
│   ├── SIEA
│   │   └── MAIN.m
│   ├── SPEA2
│   │   ├── F_fitness.m
│   │   ├── F_mating.m
│   │   ├── F_truncation.m
│   │   ├── MAIN.m
│   │   └── SPEA2.pdf
│   └── SPEA2-SDE
│   ├── F_fitness.m
│   ├── F_mating.m
│   ├── F_truncation.m
│   ├── MAIN.m
│   └── SDE.pdf
├── MOEA-dev-matser.zip
├── MOEA-D-MR-MATLAB-code--master.zip
├── MOEAD.zip
├── MOEAD和NSGA2博客版
│   └── MOEAD和NSGA2博客版
│   ├── MOEAD
│   │   ├── cross_mutation2.m
│   │   ├── cross_mutation.m
│   │   ├── DTLZ1
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── DTLZ1.txt
│   │   ├── DTLZ2
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── DTLZ2.txt
│   │   ├── funfun.m
│   │   ├── genrate_lamda.m
│   │   ├── initialize.m
│   │   ├── look_neighbor.m
│   │   ├── MOEAD.m
│   │   ├── object_fun.m
│   │   ├── tchebycheff_approach.m
│   │   ├── updateNeighbor.m
│   │   ├── ws_approach.m
│   │   ├── ZDT1
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT1.txt
│   │   ├── ZDT2
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT2.txt
│   │   ├── ZDT3
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT3.txt
│   │   ├── ZDT4
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT4.txt
│   │   ├── ZDT6
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT6.txt
│   │   └── 实验结果
│   │   ├── DTLZ1-1.jpg
│   │   ├── DTLZ1-2.jpg
│   │   ├── DTLZ1-3.jpg
│   │   ├── DTLZ1-4.jpg
│   │   ├── DTLZ1-5.jpg
│   │   ├── DTLZ2-1.jpg
│   │   ├── DTLZ2-2.jpg
│   │   ├── DTLZ2-3.jpg
│   │   ├── DTLZ2-4.jpg
│   │   ├── DTLZ2-5.jpg
│   │   ├── MOEAD(1-C,2-D,3-T,1-8).mat
│   │   ├── ZDT1-1.jpg
│   │   ├── ZDT1-2.jpg
│   │   ├── ZDT1-3.jpg
│   │   ├── ZDT1-4.jpg
│   │   ├── ZDT1-5.jpg
│   │   ├── ZDT2-1.jpg
│   │   ├── ZDT2-2.jpg
│   │   ├── ZDT2-3.jpg
│   │   ├── ZDT2-4.jpg
│   │   ├── ZDT2-5.jpg
│   │   ├── ZDT3-1.jpg
│   │   ├── ZDT3-2.jpg
│   │   ├── ZDT3-3.jpg
│   │   ├── ZDT3-4.jpg
│   │   ├── ZDT3-5.jpg
│   │   ├── ZDT4-1.jpg
│   │   ├── ZDT4-2.jpg
│   │   ├── ZDT4-3.jpg
│   │   ├── ZDT4-4.jpg
│   │   ├── ZDT4-5.jpg
│   │   ├── ZDT6-1.jpg
│   │   ├── ZDT6-2.jpg
│   │   ├── ZDT6-3.jpg
│   │   ├── ZDT6-4.jpg
│   │   └── ZDT6-5.jpg
│   ├── MOEAD(EP版)
│   │   ├── cross_mutation2.m
│   │   ├── cross_mutation.m
│   │   ├── deterdomination.m
│   │   ├── DTLZ1
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   └── solution5.txt
│   │   ├── DTLZ1.txt
│   │   ├── DTLZ2
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   └── solution5.txt
│   │   ├── DTLZ2.txt
│   │   ├── funfun.m
│   │   ├── genrate_lamda.m
│   │   ├── initialize.m
│   │   ├── look_neighbor.m
│   │   ├── MOEAD.m
│   │   ├── object_fun.m
│   │   ├── tchebycheff_approach.m
│   │   ├── updateNeighbor.m
│   │   ├── ws_approach.m
│   │   ├── ZDT1
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   └── solution5.txt
│   │   ├── ZDT1.txt
│   │   ├── ZDT2
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   └── solution5.txt
│   │   ├── ZDT2.txt
│   │   ├── ZDT3
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   └── solution5.txt
│   │   ├── ZDT3.txt
│   │   ├── ZDT4
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   └── solution5.txt
│   │   ├── ZDT4.txt
│   │   ├── ZDT6
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   └── solution5.txt
│   │   ├── ZDT6.txt
│   │   └── 实验结果
│   │   ├── DTLZ1-1.jpg
│   │   ├── DTLZ1-2.jpg
│   │   ├── DTLZ1-3.jpg
│   │   ├── DTLZ1-4.jpg
│   │   ├── DTLZ1-5.jpg
│   │   ├── DTLZ2-1.jpg
│   │   ├── DTLZ2-2.jpg
│   │   ├── DTLZ2-3.jpg
│   │   ├── DTLZ2-4.jpg
│   │   ├── DTLZ2-5.jpg
│   │   ├── ZDT1-1.jpg
│   │   ├── ZDT1-2.jpg
│   │   ├── ZDT1-3.jpg
│   │   ├── ZDT1-4.jpg
│   │   ├── ZDT1-5.jpg
│   │   ├── ZDT2-1.jpg
│   │   ├── ZDT2-2.jpg
│   │   ├── ZDT2-3.jpg
│   │   ├── ZDT2-4.jpg
│   │   ├── ZDT2-5.jpg
│   │   ├── ZDT3-1.jpg
│   │   ├── ZDT3-2.jpg
│   │   ├── ZDT3-3.jpg
│   │   ├── ZDT3-4.jpg
│   │   ├── ZDT3-5.jpg
│   │   ├── ZDT4-1.jpg
│   │   ├── ZDT4-2.jpg
│   │   ├── ZDT4-3.jpg
│   │   ├── ZDT4-4.jpg
│   │   ├── ZDT4-5.jpg
│   │   ├── ZDT5-1.jpg
│   │   ├── ZDT5-2.jpg
│   │   ├── ZDT5-3.jpg
│   │   ├── ZDT5-4.jpg
│   │   └── ZDT5-5.jpg
│   ├── MOEAD和NSGA2对比实验.docx
│   ├── MOEAD和NSGA2对比实验.pdf
│   ├── nsga2
│   │   ├── cross_mutation.m
│   │   ├── crowding_distance_sort.m
│   │   ├── DTLZ1
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── DTLZ1.txt
│   │   ├── DTLZ2
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── DTLZ2.txt
│   │   ├── elitism.m
│   │   ├── funfun.m
│   │   ├── initialize.m
│   │   ├── non_domination_sort.m
│   │   ├── nsga2.m
│   │   ├── object_fun.m
│   │   ├── tournament_selection.m
│   │   ├── ZDT1
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT1.txt
│   │   ├── ZDT2
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT2.txt
│   │   ├── ZDT3
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT3.txt
│   │   ├── ZDT4
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT4.txt
│   │   ├── ZDT6
│   │   │   ├── C_AB1.txt
│   │   │   ├── C_AB2.txt
│   │   │   ├── C_AB3.txt
│   │   │   ├── C_AB4.txt
│   │   │   ├── C_AB5.txt
│   │   │   ├── D_AP1.txt
│   │   │   ├── D_AP2.txt
│   │   │   ├── D_AP3.txt
│   │   │   ├── D_AP4.txt
│   │   │   ├── D_AP5.txt
│   │   │   ├── solution1.txt
│   │   │   ├── solution2.txt
│   │   │   ├── solution3.txt
│   │   │   ├── solution4.txt
│   │   │   ├── solution5.txt
│   │   │   ├── toc1.txt
│   │   │   ├── toc2.txt
│   │   │   ├── toc3.txt
│   │   │   ├── toc4.txt
│   │   │   └── toc5.txt
│   │   ├── ZDT6.txt
│   │   └── 运行结果
│   │   ├── DTLZ1-1.jpg
│   │   ├── DTLZ1-2.jpg
│   │   ├── DTLZ1-3.jpg
│   │   ├── DTLZ1-4.jpg
│   │   ├── DTLZ1-5.jpg
│   │   ├── DTLZ2-1.jpg
│   │   ├── DTLZ2-2.jpg
│   │   ├── DTLZ2-3.jpg
│   │   ├── DTLZ2-4.jpg
│   │   ├── DTLZ2-5.jpg
│   │   ├── NSGA2(1-C,2-D,3-T,1-8).mat
│   │   ├── ZDT1-1.jpg
│   │   ├── ZDT1-2.jpg
│   │   ├── ZDT1-3.jpg
│   │   ├── ZDT1-4.jpg
│   │   ├── ZDT1-5.jpg
│   │   ├── ZDT2-1.jpg
│   │   ├── ZDT2-2.jpg
│   │   ├── ZDT2-3.jpg
│   │   ├── ZDT2-4.jpg
│   │   ├── ZDT2-5.jpg
│   │   ├── ZDT3-1.jpg
│   │   ├── ZDT3-2.jpg
│   │   ├── ZDT3-3.jpg
│   │   ├── ZDT3-4.jpg
│   │   ├── ZDT3-5.jpg
│   │   ├── ZDT4-1.jpg
│   │   ├── ZDT4-2.jpg
│   │   ├── ZDT4-3.jpg
│   │   ├── ZDT4-4.jpg
│   │   ├── ZDT4-5.jpg
│   │   ├── ZDT6-1.jpg
│   │   ├── ZDT6-2.jpg
│   │   ├── ZDT6-3.jpg
│   │   ├── ZDT6-4.jpg
│   │   └── ZDT6-5.jpg
│   └── (原文)MOEAD A Multiobjective Evolutionary Algorithm Based on Decomposition.pdf
├── MOEAD和NSGA2博客版.zip
├── MOEA-master (1)
│   └── MOEA-master
│   ├── README.md
│   └── toStart
├── MOEA-master (1).zip
├── moea-master.zip
├── MOEAs-master.zip
└── 粒子群PSO进化
├── data.mat
└── main.m

64 directories, 720 files

标签:

实例下载地址

MOEA/D模型MATLAB代码(针对连续型函数)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警