How do I automate this fmincon code so it will return values from 10 variations of two variables contained in the constraint file? The variables I am varying are not variables that are being optimized.

3 vues (au cours des 30 derniers jours)
ObjFcn = @myObjective;
x0 = [10 0.001 7];
LB = [0 0 0];
UB = [50 0.5 7.5];
ConsFcn = @myConstraints;
[x] = fmincon(ObjFcn,x0,[],[],[],[],LB,UB,ConsFcn);
disp(x)
disp(myObjective(x))
  1 commentaire
Scott Sanders
Scott Sanders le 2 Avr 2018
I have managed to get it to work to the extent where it performs the right amount of optimizations for the varying variables outside the optimization. However for each optimization it overwrites the previous values, meaning at the end there is only 1 set of values when there should be 100. I know it is performing all 100 optimizations because of the "disp(x)" is showing 100 sets of values but just not storing them as an array in the workspace.
for X=1:1:10
for Y=1:1:10
ObjFcn = @myObjective;
x0 = [10 0.001 7];
LB = [0 0 0];
UB = [50 0.5 7.5];
ConsFcn = @(x)myConstraints(x,X,Y);
[x] = fmincon(ObjFcn,x0,[],[],[],[],LB,UB,ConsFcn);
disp(x)
disp(myObjective(x))
end
end

Connectez-vous pour commenter.

Réponse acceptée

Matt J
Matt J le 1 Avr 2018
  1 commentaire
Scott Sanders
Scott Sanders le 1 Avr 2018
Thanks that worked. I just had to incorporate a for loop as well to make sure the matrix ran outside the constraints and not inside.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Surrogate Optimization dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by