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.

2 次查看(过去 30 天)
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 个评论
Scott Sanders
Scott Sanders 2018-4-2
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

请先登录,再进行评论。

采纳的回答

Matt J
Matt J 2018-4-1

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with Optimization Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by