Can MultiStart be vectorized ?
10 次查看(过去 30 天)
显示 更早的评论
Can MultiStart be modified to be vectorized like GeneticAlgorithm?
0 个评论
采纳的回答
Walter Roberson
2019-12-21
No, but you can add the 'UseParallel', true option, which it will pass on the the solver. Some solvers can make use of that; for example, fmincon can do the finite differencing in parallel (but not much else)
4 个评论
Walter Roberson
2019-12-22
The running of the solvers is done by constructing a number of starting points, and then calling fmultistart() passing in the problem description and cell arrays of starting points.
Unfortunately, fmultistart is toolbox/globaloptim/globaloptim/private/fmultistart.p -- that is, code is not available for it, so it cannot be modified.
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!