Solving an optimization problem using fmincon

2 Ansichten (letzte 30 Tage)
Behzad Eydiyoon
Behzad Eydiyoon am 22 Aug. 2021
Kommentiert: Behzad Eydiyoon am 23 Aug. 2021
Can anyone help me to solve this? I do not know how to use the contraint on C3 and how to implement ri in it!

Akzeptierte Antwort

Alan Weiss
Alan Weiss am 22 Aug. 2021
I think that this is a straightforward problem is you use the problem-based optimization workflow, which requires a relatively recent version of Optimization Toolbox™.
Alan Weiss
MATLAB mathematical toolbox documentation
  3 Kommentare
Alan Weiss
Alan Weiss am 23 Aug. 2021
So you were able to program it. Good for you!
Now let's look at your constraints:
cons1 = sum(x) <= 10;
cons2 = sum(r.*x) >= 10;
The r variable has all entries between 0 and 1, and the x variable is nonnegative. Therefore, for any x satisfying cons1, the value of sum(r.*x) is smaller. Therefore your constraints are inconsistent.
Alan Weiss
MATLAB mathematical toolbox documentation
Behzad Eydiyoon
Behzad Eydiyoon am 23 Aug. 2021
you are right!
thank you a lot.

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