How to handle simulation error within optimization (gamultiobj)
2 次查看(过去 30 天)
显示 更早的评论
I am working on an optimization project where the objective function is calculated based on motion simulation performed using third party applications. This involves complications such as automated CAD modeling and conversion of input files in multiple stages. In other words, a lot of things can go wrong while obtaining the objective function value.
I am primarily using genetic algorithm (ga and gamultiobj). Is there a way to set the objective function value to be something so that the optimizer understand that something went wrong and continue?
0 个评论
回答(1 个)
Alan Weiss
2015-6-2
Is there a reason that you are using ga instead of patternsearch? The patternsearch solver is quite robust to evaluation failures. Unless you need multiobjective optimization, I strongly recommend patternsearch over ga, because it is faster, more robust, and easier to tune.
The only place where ga is better than patternsearch is that it chooses its own starting population. But you can easily set random initial points for patternsearch within bounds by using
x0 = lb + rand(size(lb)).*(ub - lb);
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!