Borrar filtros
Borrar filtros

fmincon is giving better results than ga for a nonlinear constrained optimization problem.

2 visualizaciones (últimos 30 días)
I used fmincon and ga for the same nonlinear constrained optimization (7-300 variables) but fmincon is giving much better results (all ceq<10^-8) while ga is not able to satisfy equality constraints. Help please.
Also: fmincon results vary with initial guess, step tolerance and constraint tolerance. What step tolerance and constraint tolerance should i choose?
  2 comentarios
Matt J
Matt J el 12 de Jul. de 2019
What help is required? If fmincon responds better to the problem, why not just use that instead?
Nayan Rawat
Nayan Rawat el 12 de Jul. de 2019
Because fmincon result depends on initial guess. Changing the initial guess is changing the result while the ceq constraints are still very small(1e-8). This means that it may be a local minimum. I want to use other algorithms which give global minimum too (like ga, patternsearch etc).

Iniciar sesión para comentar.

Respuestas (1)

Star Strider
Star Strider el 12 de Jul. de 2019
The ga function produces its best results if you override the default population matrix with one of your own. I always use an options structure similar to:
PopSz = 500;
Parms = 6;
opts = optimoptions('ga', 'PopulationSize',PopSz, 'InitialPopulationMatrix',randi(1E+4,PopSz,Parms)*1E-3, 'MaxGenerations',2E3, 'PlotFcn',@gaplotbestf, 'PlotInterval',1);
where ‘PopSz’ is the size (dimension 1) of the population matrix, and ‘Parms’ (dimension 2) is the number of parameters to optimise. It takes a bit longer, however it almost always converges successfully, if a solution exists. I use randi to more efficiently control the range of the random matrix.
  3 comentarios
Nayan Rawat
Nayan Rawat el 12 de Jul. de 2019
Thakks for the suggestion. I tried it but GA is not satisfying ceq even after taking 10 times more run time.

Iniciar sesión para comentar.

Categorías

Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by