资源简介
NSGA2传统标准.zip
代码片段和文件信息
parent_1=0.1;
mum=20;
child_3=[];
child_4=[];
for j = 1 : 1000
r(j) = rand(1);
if r(j) < 0.5
delta(j) = 1*((2*r(j))^(1/(mum+1)) - 1);
else
delta(j) =1*(1 - (2*(1 - r(j)))^(1/(mum+1)));
end
child_3(j) = parent_1 + delta(j);
if child_3(j) > 1 % 条件约束
child_3(j) = 1;
elseif child_3(j) < 0
child_3(j) =0;
end
end
parent_1=0.9;
child_4=[];
for j = 1 : 1000
r(j) = rand(1);
if r(j) < 0.5
delta(j) = 1*((2*r(j))^(1/(mum+1)) - 1);
else
delta(j) =1*(1 - (2*(1 - r(j)))^(1/(mum+1)));
end
child_4(j) = parent_1 + delta(j);
if child_4(j) > 1 % 条件约束
child_4(j) = 1;
elseif child_4(j) < 0
child_4(j) =0;
end
end
parent_1=0.5;
child_5=[];
for j = 1 : 1000
r(j) = rand(1);
if r(j) < 0.5
delta(j) = 1*((2*r(j))^(1/(mum+1)) - 1);
else
delta(j) =1*(1 - (2*(1 - r(j)))^(1/(mum+1)));
end
child_5(j) = parent_1 + delta(j);
if child_5(j) > 1 % 条件约束
child_5(j) = 1;
elseif child_5(j) < 0
child_5(j) =0;
end
end
plot(child_3‘bo‘);
hold on;
plot(child_4‘ro‘);
plot(child_5‘go‘);
xlabel(‘变异次数‘); ylabel(‘子代个体分布‘);
legend(‘p=0.1‘‘p=0.9‘‘p=0.5‘);
hold off;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-07-19 10:45 NSGA2传统标准\
文件 27562554 2018-07-14 21:56 NSGA2传统标准\NDX.bmp
文件 1974 2018-07-15 16:40 NSGA2传统标准\NDX.m
文件 151552 2018-07-18 21:52 NSGA2传统标准\NSGA2gaijin.xls
文件 27562554 2018-07-14 21:59 NSGA2传统标准\SBX(X1=0.6X2=0.3R=15).bmp
文件 568 2018-07-14 21:40 NSGA2传统标准\SBX.m
文件 27562554 2018-07-15 11:37 NSGA2传统标准\bianyichuantong.bmp
文件 27562554 2018-07-15 11:38 NSGA2传统标准\bianyigaijin.bmp
文件 1630 2018-07-15 11:36 NSGA2传统标准\duoxiangshichuantong.m
文件 3268 2018-07-15 11:38 NSGA2传统标准\duoxiangshigaijin.m
文件 507 2018-07-18 16:05 NSGA2传统标准\evaluate_ob
文件 2934 2018-07-18 16:06 NSGA2传统标准\genetic_operator.m
文件 732 2018-06-25 17:02 NSGA2传统标准\initialize_variables.m
文件 4766 2018-06-26 12:43 NSGA2传统标准\non_domination_sort_mod.m
文件 2152 2018-07-18 21:52 NSGA2传统标准\nsga_2_optimization.m
文件 1217 2018-06-26 19:31 NSGA2传统标准\replace_chromosome.m
文件 16200 2018-01-22 12:51 NSGA2传统标准\solution.txt
文件 1613 2018-06-26 15:13 NSGA2传统标准\tournament_selection.m
文件 1102554 2018-07-17 09:21 NSGA2传统标准\分布均匀性.bmp
文件 32812554 2018-07-17 10:32 NSGA2传统标准\变正太分布标准差NDX.bmp
文件 27562554 2018-07-17 10:16 NSGA2传统标准\自适应交叉概率.bmp
- 上一篇:源代码.rar100795
- 下一篇:Revit二次开发实现BIM盈利.pdf
相关资源
- Revit二次开发实现BIM盈利.pdf
- 源代码.rar100795
- 课程设计报告.doc
- Applicationsofsecond-orderconeprogramming.PDF
- 数据中心网络和安全建议方案模板.
- CRUDDemo2.2.rar
- 毕业论文(打印1).pdf
- 8路抢答器.7z
- MProg3.0_Setup.exe
- SIFT经典文献.zip
- SolidWorks-100多个.pdf
- TradZhaopinProject.rar
- 京东应用架构设计.pdf
- 1555051Excel使用教程.rar
- EP1C3T144芯片开发板原理图及电路板图
- v1.0源码.rar
- 国土三调建库与管理系统使用手册2
- AppleWirelessMouse64.exe
- AE中经常使用的三个AVI编码器.rar
- tftb-0.2.rar
- mosquitto1.4.15-release带源码全套Win32.ra
- 拼接算法SIFT.rar
- 人力资源管理系统.rar
- stm32f103双串口收发结构体版本.zip
- jklmn668_3990025.kdh
- album4.1.zip
- CommTest.zip
- htlibrary.rar
- OK2.exe
- vs2005-camshift.rar
评论
共有 条评论