How to create STOP button in GUI to stop my GA optimization?

조회 수: 1 (최근 30일)
Hossein
Hossein 2015년 3월 4일
댓글: Hossein 2015년 3월 5일
I have a GUI with "Optimize" and "Stop" pushbuttons. Pressing "Optimize" will call "ga" command to run an optimization process with iteration display being on. Now, I'd like for the user to be able to stop the GA process whenever "Stop" button is clicked. Could you please help me how to invoke GA from GUI to stop and then retrieve the best set of parameters GA has found so far? Thanks!

채택된 답변

Alan Weiss
Alan Weiss 2015년 3월 5일
Have your GUI call ga with an output function. As explained in the documentation,
"The output function returns the following arguments to ga:
  • state — Structure containing information about the current generation. The State Structure describes the fields of state. To stop the iterations, set state.StopFlag to a nonempty string."
Alan Weiss
MATLAB mathematical toolbox documentation
  댓글 수: 3
Sean de Wolski
Sean de Wolski 2015년 3월 5일
You'll need to add a drawnow to flush the event queue (I.e. capture the mouse click event).
The optimizer will still finish the iteration it's on either way.
Hossein
Hossein 2015년 3월 5일
Thank you, Sean! it's now working by putting the "drawnow" at the begining of my OutputFcn to flush event queue as you mentioned.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by