- 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."
How to create STOP button in GUI to stop my GA optimization?
5 次查看(过去 30 天)
显示 更早的评论
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!
0 个评论
采纳的回答
Alan Weiss
2015-3-5
"The output function returns the following arguments to ga:
Alan Weiss
MATLAB mathematical toolbox documentation
3 个评论
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Genetic Algorithm 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!