I need that the values of x(1) and x(2) are not higher than 1 using the Genetic algorith for optimization
1 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Genetic Algorithm 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!