Can MultiStart be vectorized ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
mahmoud tarek
am 21 Dez. 2019
Beantwortet: mahmoud tarek
am 22 Dez. 2019
Can MultiStart be modified to be vectorized like GeneticAlgorithm?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 21 Dez. 2019
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 Kommentare
Walter Roberson
am 22 Dez. 2019
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.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Global or Multiple Starting Point Search finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!