Filter löschen
Filter löschen

When solving the global optimal solution with MATLAB fmincon function, is it to find several local optimal solutions and then compare them to choose the optimal solution?

4 Ansichten (letzte 30 Tage)
When solving the global optimal solution with MATLAB fmincon function, is it to find several local optimal solutions and then compare them to choose the optimal solution?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 15 Mär. 2022
fmincon() does not do that automatically. fmincon() stops at the first local minima it finds that satisfies the constraints -- but the process of determining whether it is a local minima involves probing other locations to see if it can find an improvement.
If you need to have several local minima compared automatically then you would use the Global Optimization Toolbox, probably using multistart() or similar.
  3 Kommentare
Walter Roberson
Walter Roberson am 15 Mär. 2022
Yes, that code would automatically generate multiple starting points and would compare the results to select the best of them.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by