필터 지우기
필터 지우기

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.

답변 (1개)

Matt J
Matt J 2021년 6월 17일

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by