Clear Filters
Clear Filters

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 views (last 30 days)
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?

Accepted Answer

Walter Roberson
Walter Roberson on 15 Mar 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 Comments
Walter Roberson
Walter Roberson on 15 Mar 2022
Yes, that code would automatically generate multiple starting points and would compare the results to select the best of them.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!