资源简介
基于NSGA-II的多目标优化算法及论文,算法代码可运行,论文已在cscwd2018会议中发表
代码片段和文件信息
function f=evaluate_objective(xMV)
f=[];
sum=0;
for i=1:V-1
sum=sum-10*exp(-0.2*sqrt((x(i))^2+(x(i+1))^2));
end
f(1)=sum;
sum=0;
for i=1:V
sum=sum+(abs(x(i))^0.8+5*(sin(x(i)))^3);
end
f(2)=sum;
if length(f)~=M
error(‘the number of decision variable does not match you previous inputkingly check your objective function‘);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 356 2018-03-20 18:32 多目标优化算法\NSGA-II\evaluate_ob
文件 342 2018-03-20 18:17 多目标优化算法\NSGA-II\initialize_variables.m
文件 2523 2018-03-21 20:21 多目标优化算法\NSGA-II\non_domination_sort_mod.m
文件 644 2018-03-20 22:13 多目标优化算法\NSGA-II\nsga_2.m
文件 1300 2018-03-20 17:54 多目标优化算法\NSGA-II\ob
文件 1376256 2018-03-26 14:53 多目标优化算法\The Markov Queuing Model with Unequal Processing Capacities and Its Optimization Strategy -v1(20180402).doc
目录 0 2018-04-13 17:38 多目标优化算法\NSGA-II
目录 0 2018-04-13 17:38 多目标优化算法
----------- --------- ---------- ----- ----
1381421 8
评论
共有 条评论