optimization problem with arrays

2 Ansichten (letzte 30 Tage)
Gerard Burjalès
Gerard Burjalès am 7 Dez. 2022
Bearbeitet: Bruno Luong am 7 Dez. 2022
Hello, I am trying to create a problem based optimization problem for minimazing.
To summer it up, I want to do this optimization and I don't know how to do what I have in bold:
array1 = array2 - array3 .* (optimization_variable);
A=sum(array1(array1>0));
objective = A;
Is there any way to put conditionals in an optimization problem?
Thanks in advance

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 7 Dez. 2022
Bearbeitet: Bruno Luong am 7 Dez. 2022
Could you try this equivalent expression
A=sum(array1.*(array1>0));
  3 Kommentare
Bruno Luong
Bruno Luong am 7 Dez. 2022
Bearbeitet: Bruno Luong am 7 Dez. 2022
May be you should relax the if test and replace it with one of the sigmodid function
S = @(x) atan(x)/(pi/2); % select the function you want
scale = ... ; small number appropriate for array1.
A = sum(array1.*((S(array1/scale)+1)/2));
Gerard Burjalès
Gerard Burjalès am 7 Dez. 2022
Thanks for solving the issue and for the warm welcome in this community

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Linear Programming and Mixed-Integer Linear Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by