フィルターのクリア

How to use fmincon's constraintviolation option

2 ビュー (過去 30 日間)
xone92_
xone92_ 2023 年 4 月 17 日
編集済み: Torsten 2023 年 4 月 17 日
Hello there,
I'm trying to use fmincon for an optimization problem.
I use Nonlinear constraints and my function returns a ceq value. This however is not "0" it is 0.0014693, hence fmincon will give me an exitflag of -2 (no feasible point was found). I then try to use the 'ConstraintTolerance' option (which by default is 1e-6) and put it to 0.01. However, still no feasible solution could be found (now the ceq value is 0.0012396).
Can you tell me what I'm doing wrong?

採用された回答

Torsten
Torsten 2023 年 4 月 17 日
移動済み: Matt J 2023 年 4 月 17 日
Can you tell me what I'm doing wrong?
You try to betray yourself that your problem has a solution. But it has none.
  2 件のコメント
xone92_
xone92_ 2023 年 4 月 17 日
編集済み: xone92_ 2023 年 4 月 17 日
Hello there,
that's true it has none with this contraints. But actually the solution which gives me ceq=0.0014693 is a good solution for me. I just want to increase the Tolerance in a way that fmincon gives me back a 1 or 2 as exitflag. In fact if i set 'ConstraintTolerance' to 0.1 I get what i want. But fot this reason i don't understand the 'ConstraintTolerance' option, that's why I'm writing here
To clarify my question from above. The ceq constraints has some Tolerance, since its hard to have a solution ceq==0. I though it is adjusted by the 'ConstraintTolerance' option. If I have for example the case as above ceq=0.0014693 i want this still to be a valid tolerance.
Torsten
Torsten 2023 年 4 月 17 日
編集済み: Torsten 2023 年 4 月 17 日
ConstraintTolerance is defined as:
ConstraintTolerance is an upper bound on the magnitude of any constraint functions. If a solver returns a point x with c(x) > ConstraintTolerance or |ceq(x)| > ConstraintTolerance, the solver reports that the constraints are violated at x. ConstraintTolerance can also be a relative bound. See Tolerance Details.
We cannot tell you more than this.
To diagnose why you get an exitflag of -2 although you set the constraint tolerance to 0.01 and the real error in the constraint is only 0.0012396 - we are not able to without your code. Maybe another constraint is now violated. Or the solver takes the relative error instead of the absolute error.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSolver Outputs and Iterative Display についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by