I have a questions on the MATLAB function gamultiobj function in obtaining Pareto front.
How to convert the minimization of multiple functions using genetic algorithm in a maxmization problem with linear constraints?
For example, instead of solving:
Min [2*x(1) - x(2) - exp(-x(1));
x(1) + 2*x(2) - exp(-x(2))];
%with Bounds
lb = [0;0];
ub = [1;1];
Find the following max:
Max [2*x(1) - x(2) - exp(-x(1));
-x(1) + 2*x(2) - exp(-x(2))];
%with Bounds
lb = [0;0];
ub = [1;1];
