I need that the values of x(1) and x(2) are not higher than 1 using the Genetic algorith for optimization
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Voir également
Catégories
En savoir plus sur Genetic Algorithm dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!