MATLAB: Function for solving MINLP

Global Optimization ToolboxMATLABminlpoptimizationOptimization Toolbox

Is there a specific function (with integrated algorithms) to solve MINLP ? I can find the MILP function (intlinprog) and the NLP function (fmincon)…Otherwise i will use a greedy algorithm like ga for my problem.
Thanks!

Best Answer

ga() is the only function in MATLAB, which supports nonlinear integer programming. There is no other specific function for this purpose.