3.97059

4.0 | 37 ratings Rate this file 254 Downloads (last 30 days) File Size: 153.84 KB File ID: #10429

NSGA - II: A multi-objective optimization algorithm

by Aravind Seshadri

 

19 Mar 2006 (Updated 19 Jul 2009)

A function for multi-objective optimization using evolutionary algorithms

| Watch this File

File Information
Description

NSGA-II is a very famous multi-objective optimization algorithm. I submitted an example previously and wanted to make this submission useful to others by creating it as a function. Even though this function is very specific to benchmark problems, with a little bit more modification this can be adopted for any multi-objective optimization.

The function is nsga_2(pop,gen). The input arguments for the function are population size and number of generations. 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.

For more information on NSGA-II visit Kanpur Genetic Algorithm Laboratory at http://www.iitk.ac.in/kangal/

One of the main applications of multi-objective optimization that I am currently working on is tuning PID controllers using MOEA. I am hoping to share that work with everyone soon.

Update (January 27, 2009): I am unable to support user's request to modify this program to incorporate constraints in the optimization program since I have no time to delve into this field. Hence effective today (January 27, 2009) I release this program under GPLv3. This means that anyone and everyone can modify this code as and how they wish. Enjoy! But do remember to contribute the code back to the community.

Effective July 17, 2009 this code is re-licensed under BSD license to comply with Mathworks policy on submissions to MATLAB central.

Note: I no longer have the resources to maintain this code.

Acknowledgements
This submission has inspired the following:
GODLIKE - A robust single-& multi-objective optimizer, NGPM -- A NSGA-II Program in Matlab v1.4
MATLAB release MATLAB 7.1.0 (R14SP3)
Other requirements Evolutionary algorithms are CPU and memory intensive. Recommended CPU clock speed is 1.6GHz with atleast 512MB RAM.
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (53)
07 May 2006 xunkai wei

A good one, yet if you can use a mex interface, it will be more attractive!

22 May 2006 ZC ZC  
05 Aug 2006 hamid ansari  
28 Aug 2006 Mukiwa Zimbani

This is a very helpful set of files!
It seems like this implementation does not handle constraints though. Deb's NSGA-II paper mentions a scheme for handling constraints (i.e. not just bound constraints on the decision variables, but "constraint functions"). If this is implemented in this version, could you point me towards whereI acn specify the constraints? If not, would you know of a matlab version that implements these contraints?

Thanks!

22 Sep 2006 moh hemati

THanks

22 Sep 2006 Piotr Wozniak

Generally a pleasure to work with, has been very useful to my work. The one minor thing I'd recommend would be ensure consistency in variable declarations in the m-files.

Great work!

12 Oct 2006 Varun Aggarwal

this code is buggy, use at own risk. sbx is wrong, selection is not done the right way and others...

13 Oct 2006 Mohammad Hemati

thank you for this report,but these codes don't use for decition variables space,please guide me ,How I get the variables value (x1,x2,.....).Also How use it for constrained problems.
Very thanks

18 Oct 2006 tong hunter

this toolbox is very useful to me .thanks
but,I haven't found there is some bugs

11 Nov 2006 shahab shamshirband

HI dear friends
i need a source code for tsp based on quadratic problems

19 Nov 2006 little cat

thx

18 Jan 2007 water bruce

thx, dear friend, you renew my life.

25 Jan 2007 Istadi Istadi  
09 Mar 2007 Fenggy Chen

thx.

20 Mar 2007 nima tavakkoli

thanx alot,it`s brilliant!

07 May 2007 Seth Soman  
12 Jun 2007 hadj smail  
17 Jun 2007 Joe Leo  
29 Jun 2007 segaf husein  
13 Dec 2007 Luis Felipe Giraldo  
17 Dec 2007 Slim Bechikh

Hi Arvind, I am Slim Bechikh a tunisian student, i thank you for your efforts to develop such program but there is a small mistake in your code:
function f = replace_chromosome(intermediate_chromosome,
pro,pop)
must be
function f = replace_chromosome(intermediate_chromosome,
M,V,pop)

I tried your program on MATLAB 7.0 and it did not run and after correcting this mistake it has run with succes.

15 Feb 2008 elty sarvia

This is a very helpful set of files! It seems like this implementation does not handle constraints though. Deb's NSGA-II paper mentions a scheme for handling constraints (i.e. not just bound constraints on the decision variables, but "constraint functions"). If this is implemented in this version, could you point me towards whereI acn specify the constraints? If not, would you know of a matlab version that implements these contraints? Thanks!

09 Apr 2008 Ram Natamo

To me it seems there is some room for improvement. In file genetic_operator.m line
was_cossover = 0;
should probably be
was_crossover = 0;

Even worse, in the same file, child_3 is of different size than V before call:
child_3(:,V + 1: M + V) = evaluate_objective(child_3, M, V);
This must be an error?!

09 Apr 2008 Ram Natamo

Further, it seems that performance of this implementation is not even close to that of Deb's original implementation, with regard to generations.
Probably there is something wrong with this code?

19 Apr 2008 Ram Natamo

After my previous comments I did some head to head testing with this implementation and original c-implementation by Deb's group (downloadable from http://www.iitk.ac.in/kangal/), and this implementation is converging really slowly (in terms of objective function evaluations)! That's a pity, I could have used Matlab implementation... :(
My recommendation is that you should use this version only if you dont care a bit about performance.

02 Jul 2008 Mauro Kito

The code works well with all the test problems. Indeed, C code implementation will have faster performance in computation

03 Aug 2008 ali mohammadpour  
07 Aug 2008 Javed Dhillon  
04 Sep 2008 Zhang Tieliang

thank you for the code.Please help me that how use it for constrained problems. If not, would you know other matlab code that can do these contraints?

20 Oct 2008 Zhang hua yong

It can not work !

23 Oct 2008 lin deng

the code can work well, and it can be used for constrained problems by little modification, thank u for the author!

29 Dec 2008 Deepak santhanakrishnan

Thnks for this. Where do i call the input arguments for the function popsize and number of arguments in the main file?

10 Feb 2009 hailiang shen

The author seems to be used to c programming language. If implemented with more vector operation, the performance (speed) should be better.

10 May 2009 Tuan Pham  
12 May 2009 Tuan Pham

I had solved my problem with this NSGA-II codes but it does cost computer resources. However as I know latest Matlab versions have "gamultiobj" dealing with multiobjective optimization with genetic algorithm. I haven't worked with gamultiobj so I don't know what will be different between these two.

11 Jul 2009 liheng liu

great job! It can work well on my project! just a little modification to suit my constraint problem! thank you!

31 Dec 2009 yousaf zia

Thanks arvind.......
                    Great work ........it is the knowledge which gives the benefit to other..........i would like to be same as you in this regard.........thanking you

04 Mar 2010 Manuel

HI Arvind.
Really great work. Thank you for the code.Please help me that how use it for constrained problems.

In other way, I think the code could have more consistency in variables declaration.

 

25 Jan 2011 Wafa Ben Yahia

Hi, thanks, it's a good work
I want to ask "Ram Natamo" if c-implementation by Deb's group is faster than Matlab?
In my problem i have many constraints, so how to imput it.
thanks for answer :)

03 Feb 2011 Gundian Martin

Thank you for the code
Please help me that how use it for constrained problems.

Thanks in advance

24 Mar 2011 faizal  
18 Apr 2011 Aravind Krishnan S

Hi,

Can you please advise me on how to use the code. As to which file to run? When I ran the objective_description_function, I could input the number of objectives, the number of decision variables and also the range of decision variables. But the code finished running just to display "ans=2". How do I rectify this problem? Thank you.

05 May 2011 xu kuiwen

Thank you very much

12 May 2011 ANU

Did anyone try running problem ZDT4 described in paper "AFastandElitstMulti-Objetive Geneti Algorithm:NSGA-II"?

It doesn't give the correct or even close to Deb's original implementation in c language. I did this:

f(1) = x(1);
sum = 0;
for (i = 2:V)
sum = sum + x(i)^2-10*roundn(cos(4*pi*x(i)),-4);
    end
    g_x = 1+10*(V-1) + sum;
    
    f(2) = g_x*(1-sqrt(x(1)/g_x));

13 May 2011 Wafa Ben Yahia

pour travailler avec l'implémentation en langage C de Mr Deb, tu dois écrire le suivant dans l'espace réservé à la fonction objective:

f1 = xreal[0];
    g = 0.0;
    for (i=1; i<10; i++)
      {
          g += xreal[i]*xreal[i] - 10.0*cos(4.0*PI*xreal[i]);
      }
      g += 91.0;
      h = 1.0 - sqrt(f1/g);
      f2 = g*h;
      f[0] = f1;
      f[1] = f2;

si tu veux autre chose, tu peux me contacter :)

06 Jun 2011 Anisuzzaman Shuvo

thanks

24 Jun 2011 xuezhupig

it's nice

10 Jul 2011 xiaoping wu

It's great.But I want to know how to use it for constrained problems.I need the help.

08 Aug 2011 Li

 when I run the program one error "Error: File: ndsort.m Line: 259 Column: 10" appeared. The error place is "[~,ix]". I hope you can help me.

04 Nov 2011 aftab Ahmad  
14 Dec 2011 Andreas

Does anyone know how to solve the problem "Error: File: ndsort.m Line: 259 Column: 10"?
It would be nice if you could help me. Thanks in advance

02 Mar 2012 mer ve

how can we add a rule like, final chromosomes(the solutions) should be divisable by 100? It would be so nice of you if you can help. Thanks in advance...

09 Mar 2012 mer ve

I think in genetic_operator.m,
child_3(j) = child_3(j) + delta(j); line
should be replaced by
child_3(j) = child_3(j) + (u_limit(j)-l_limit(j))*delta(j);
according to the attached file...

Please login to add a comment or rating.
Updates
27 Jan 2009

Changed the license to GPLv3

16 Jul 2009

Modified the license to BSD

16 Jul 2009

Modified the license to BSD

19 Jul 2009

Updated the description

Tag Activity for this File
Tag Applied By Date/Time
genetic algorithm qingxi song 04 Jan 2009 01:03:31
multiobjective optimization qingxi song 04 Jan 2009 01:19:33
nsgaii qingxi song 04 Jan 2009 01:20:35
nsga ii Aravind Seshadri 28 Jan 2009 10:45:33
multiobjective optimization Aravind Seshadri 28 Jan 2009 10:45:33
optimization Aravind Seshadri 28 Jan 2009 10:45:33
genetic algorithm hamid rezaii 07 Mar 2010 12:45:37
genetic algorithm venu gopal rao 13 Apr 2010 00:46:29
multiobjective optimization majid yazdani 14 Jul 2011 05:58:00

Contact us at files@mathworks.com