Multiobjective Optimization with NBI (Normal Boundary Interseption) in MATLAB -


i'm trying optimize multiobjective problem in test functions. can weighted sum method.

function z=fun(u) obj1 = ft(1); obj2= ft(2); z=obj1*w+(1-w)*obj2; end 

by minimizing weighted function i'm getting following pareto front (fonseca , fleming f.); weighted sum bi-objective optimization

how can improve method getting pareto front ? enter image description here

in opinion, normal boundary intersection method better this. there code sample method in matlab or programming lang.

thanks helps,


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -