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

조회 수: 3 (최근 30일)
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
Matt J
Matt J 2019년 7월 12일
What help is required? If fmincon responds better to the problem, why not just use that instead?
Nayan Rawat
Nayan Rawat 2019년 7월 12일
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).

댓글을 달려면 로그인하십시오.

답변 (1개)

Star Strider
Star Strider 2019년 7월 12일
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
Nayan Rawat
Nayan Rawat 2019년 7월 12일
Thakks for the suggestion. I tried it but GA is not satisfying ceq even after taking 10 times more run time.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by