[globalsearch] nonlinear constraint violation
Mostrar comentarios más antiguos
Hi,
I am using globalsearch with 'fmincon' solver for an optimization problem with one nonlinear constraint and two boundary constraints. However, the optimal solutions from Matlab violates the nonlinear constraint. I tried 'Interior-point', 'sqp' and 'active-set' algorithms. But none of them returns an answer that is feasible. Is there a way to require absolute obedience of the constraint? Thank you very much.
Jie
Respuestas (6)
Laura Proctor
el 6 de Oct. de 2011
How are you defining the nonlinear constraint function?
If you only have an equality nonlinear constraint, you still need the first output of your nonlinear constraint function to be the inequality constraint. If you don't have an inequality constraint, set that variable to the empty set, i.e.
function [c,ceq] = nlc(x)
c = [];
ceq = x.^2 - 2;
Jie Ning
el 6 de Oct. de 2011
Laura Proctor
el 6 de Oct. de 2011
0 votos
The next thing I would check is to be sure that the nonlinear inequality constraint function is evaluated such that it should be less than or equal to zero. For the example above, the constraint would translate to:
x.^2 <= 2
Jie Ning
el 6 de Oct. de 2011
0 votos
Laura Proctor
el 6 de Oct. de 2011
0 votos
Are you receiving a message that the optimal solution has been found? What is the final message saying?
Jie Ning
el 6 de Oct. de 2011
0 votos
Categorías
Más información sobre Global or Multiple Starting Point Search en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!