Borrar filtros
Borrar filtros

how to fix a genetic algrithm function probelem

1 visualización (últimos 30 días)
segun
segun el 9 de Abr. de 2014
Respondida: Matt J el 22 de Sept. de 2014
Hi, Had an error when I ran this on the matlab prompt:
??? Error using ==> preProcessLinearConstr
The number of rows in A must be the same as the length of b.
Can anyone help out ? N.B : The mfile: multiplesegments exists and has been added to path.
FitnessFunction=@multiplesegments ;
numberofVariables=20;
PopInitRange=[95 3 95 3 95 3 95 3 95 3 95 3 95 3 95 3 95 3 95 3; 115 3 115 3 115 3 115 3 115 3 115 3 115 3 115 3 115 3 115 3];
[x,fval]=ga(FitnessFunction,numberofVariables,PopInitRange)

Respuesta aceptada

Matt J
Matt J el 22 de Sept. de 2014
[x,fval]=ga(FitnessFunction,numberofVariables,PopInitRange)
This does not resemble the input syntax of ga() described in its documentation. You should be using the options argument in
x = ga(fitnessfcn,nvars,A,b,Aeq,beq,LB,UB,nonlcon,options)
to control the PopInitRange.

Más respuestas (0)

Categorías

Más información sobre Genetic Algorithm en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by