How to solve MINLP via problom-based optimization

I have an optimization problem which is a MINLP (mixed integer nonlinear programming). I tried to solve it via problem-based optimization. I use opts = optimoptions(prob) but it failed. MATLAB told me Nonlinear problem with integer variables not supported.
I wonder what solver should I choose to solve such a problem and how to do. Any suggestion is appreciated. Thanks!

4 Kommentare

Torsten
Torsten am 21 Feb. 2022
If you really have a nonlinear problem with integer variables, you can only use ga.
@Torsten How to use ga in problem-based optimization?
opts = optimoptions('ga') didn't work.
@Torsten Thanks for your comments!

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Matt J
Matt J am 21 Feb. 2022

0 Stimmen

You can use prob2struct()
to convert problem-based formulations of your bounds, linear and integer constraints to a format suitable for ga().

Gefragt:

am 21 Feb. 2022

Beantwortet:

am 21 Feb. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by