Choose one optimal value in gamultiobj optimization algorithm
1 次查看(过去 30 天)
显示 更早的评论
Hi can you help me please , i want to make optimization in multi objective function as this example
function y = simple_multiobjective(x)
y(1) = (x+2)^2 - 10;
y(2) = (x-2)^2 + 20;
x = -10:0.5:10;
f1 = (x+2).^2 - 10;
f2 = (x-2).^2 + 20;
FitnessFunction = @simple_multiobjective;
numberOfVariables = 1;
A = []; b = [];
Aeq = []; beq = [];
lb = -1.5;
ub = 0;
x = gamultiobj(FitnessFunction,numberOfVariables,A,b,Aeq,beq,lb,ub);
my problem is when i want to take the optimal value of x , the algorithm gives me a lot of numbers and i do not know which one is optimal number . can you help me
thank you
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File 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!