Pareto Optimal Front
问题 I am trying to obtain the pareto optimal front for the two fitness functions. I sorted the undominated solutions by using a dummy matrix that allocated "ones" in the matrix for any undominated solution. When I plot the pareto front it keeps including points that I know are not part of the pareto optimal. However, I cannot seem to find the cause of this problem. Any help would be really appreciated. for i = 1:1000 f1(i) = x(i,1)^2; f2(i) = (x(i,1)-2)^2; end store = zeros(1000,1); for i = 1