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

javascript - Knockout pushing observable and computed data to an observable array -

Trouble making a JSON string -

sitecore - Resolve ISitecoreService using SimpleInjector -