Borrar filtros
Borrar filtros

ERROR : Constraint function must return real value

18 visualizaciones (últimos 30 días)
Hamid
Hamid el 25 de Dic. de 2015
Comentada: Hamid el 25 de Dic. de 2015
I'm using genetic algorithm as my optimization solver but I keep getting this error and I don't know why.
??? Error using ==> constrValidate at 30 Constraint function must return real value.
any suggestion.

Respuestas (1)

Walter Roberson
Walter Roberson el 25 de Dic. de 2015
Your constraint function is returning a complex value (or possibly a NaN). Remember that the constraint function may be executed with values that are out of range, with it being the responsibility of the constraint function to say whether they are in range.
  1 comentario
Hamid
Hamid el 25 de Dic. de 2015
thank you Walter, my constraint is something like this :
y(1)=x(1)*a;
y(2)=x(1)*b;
c(1)=y(1)-y(2);
I set a breakpoint and c(1) will be always NaN.
what do you recommend to get rid out this error?
thank you my friend.

Iniciar sesión para comentar.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by