I need that the values of x(1) and x(2) are not higher than 1 using the Genetic algorith for optimization

1 view (last 30 days)
Hi, I am having some questions with the use of Genetic algorith for optimization, here is my program
clc
clear all
fun_objetivo = @(par,pfrac)FunObjetivo(par);
A=[];
b=[];
Aeq=[];
beq=[];
lb=[0 0];
ub=[];
nonlcon=[];
IntCon=[];
nvar=3;
options = gaoptimset('TolCon',1.0e-19,'TolFun',1.0e-30,...
'Display','iter','PlotFcn', @gaplotbestf);
par_optimos = ga(fun_objetivo,nvar,A, b, Aeq, beq,lb,ub,nonlcon,IntCon,options);
I wanted to know if someone can help me please, since I need that the values of par_optimos(1) and par_optimos(2) are not higher than 1.

Answers (1)

Matt J
Matt J on 17 Jun 2021
ub=[1,1,inf];

Community Treasure Hunt

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

Start Hunting!