【源码】NSGA - II:一种基于进化算法的多目标优化函数

在这里插入图片描述
NSGA-II是一种著名的多目标优化算法。

NSGA-II is a very famous multi-objective optimization algorithm.

相应的函数为nsga_2(pop,gen)。

The function is nsga_2(pop,gen).

输入参数pop为种群大小,gen为进化代数。

The input arguments for the function are population size and number of generations.

用户可以根据需要灵活修改优化目标函数evaluate_objective.m。

For customization purposes the user is free to modify the objective function (function of several decision variables) by modifying an m file (evaluate_objective.m).

本文件中已经提供了一些目标函数示例。

Couple of sample objective functions is already described in the file.

用户还可以自定义判决空间。

The user also has the freedom to define the decision space.

完整源码下载地址:

http://page5.dfpan.com/fs/flbcdj5232817259166/

更多精彩文章请关注微信号:在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_42825609/article/details/84838765