Any body get this Error before when using GA
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm solving my optimization problem using GA. It works well but suddenly I start getting this error "Error using gaminlpcreateexitmsg Exitflag from galincon does not have a corresponding exit message."
Any body can help???
0 commentaires
Réponses (1)
Alan Weiss
le 29 Août 2018
Sounds like maybe a bug. What MATLAB version are you using? Can you give reproduction code?
From the error message, it seems that you are solving an integer-constrained problem that also has linear constraints. As a workaround, perhaps throw in a nonlinear constraint that doesn't do anything, such as
function [c,ceq] = mynoop(x)
ceq = [];
c = -1;
Add @mynoop as the nonlinear constraint in ga. I don't know if this will really solve your problem, but in the absence of other information it is all I can think of right now.
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation
0 commentaires
Voir également
Catégories
En savoir plus sur Linear Least Squares 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!