Multi objective optomization using gamultiobj

2 views (last 30 days)
Dear All
Regarding this code
clc
clear
fitnessfcn = @(x)[norm(x)^2,0.5*norm(x(:)-[2;-1])^2+2];
rng default % For reproducibility
x = gamultiobj(fitnessfcn,2);
%% the result of x is a matrix and I need to know what is the optimal solution from this matrix , I need to choose only one solution which satisfy the minimization of the fitness function
Regards
  3 Comments

Sign in to comment.

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!