MATLAB: How can we obtain the golobal minimum? in case nonconvex optimization using fmincon.

fmincon

in case our constraint functions are nonconvex how can we obtain the global minimun using fmincon?

Best Answer

If you need a global minima, then fmincon() is usually the wrong routine to use. fmincon() is a local minimizer. There are certain kinds of functions for which it will find the global minimum within the constraints, but not generally. If there is any location inside the constrained area where the partial derivatives are all nearly 0 then fmincon() may find that location even if the global minimum seems "obvious".