Strict inequalities in fmincon

조회 수: 15 (최근 30일)
ToM
ToM 2011년 7월 26일
Hello,
I'd like to use fmincon with strict inequalities (A.x<b and not A.x<=b). I've looked on different websites but I didn't find any information about this. Is it possible? How can I do that ?
Thanks for helping
Tom

답변 (2개)

the cyclist
the cyclist 2011년 7월 26일
I don't have the optimization toolbox, so I cannot test this idea, but I wonder if you can effectively handle this by including "eps" (the floating point spacing) as part of the input specification of "b".

Steve Grikschat
Steve Grikschat 2011년 7월 26일
Effectively, you're defining a new strict inequality A*x <= b-e where "e" can be arbitrarily small. As the cyclist pointed out, there are floating point limitations to how small "e" can be.
However, also note that solvers (including fmincon) have tolerances for constraint violation as well. In this case, it means that at a solution, your worst case now is A*x <= b-e + TolCon (possibly with a relative factor on TolCon). You should factor that in if you need to satisfy the strict inequality.

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by