What does this other Fmincon error mean?

10 ビュー (過去 30 日間)
Amir Patel
Amir Patel 2013 年 6 月 18 日
コメント済み: Nayan Rawat 2019 年 9 月 9 日
Hi there
I'm doing a constrained optimization problem where I first generate a few random intial points, I then only keep the feasible ones. I do this by running the objective function to see if it returns a NaN. NaN is returned when the
Then I use the feasible set of initial values and I call fmincon in a FOR loop. I am not using parallel computing toolbox.
However, I sometimes receive an error after fmincon begins from a feasible point.
Here is the output:
Error using barrier (line 143)
Finite difference derivatives undefined at initial point. Fmincon cannot continue.
Error in fmincon (line 841)
[X,FVAL,EXITFLAG,OUTPUT,LAMBDA,GRAD,HESSIAN] = barrier(funfcn,X,A,B,Aeq,Beq,l,u,confcn,options.HessFcn, ...
Error in FreeTailObjConstr (line 74)
[x,fval,exitflag] = fmincon(fun,x0,Aineq,Bineq,Aeq,Beq,Lwr,Upr,cfun,options,param);
Error in multiStartFreeTail (line 120)
[x,fval,exitflag] = FreeTailObjConstr(x0, UB, LB, muVal);
end
What does this mean? Is it happening because even though the first point is feasible, the next point fmincon attempts returns is NaN?
Any help would be appreciated.
Cheers
Amir
  1 件のコメント
Nayan Rawat
Nayan Rawat 2019 年 9 月 9 日
I have a similar problem. Any solutions?

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

採用された回答

Alan Weiss
Alan Weiss 2013 年 6 月 18 日
fmincon estimates derivatives by taking finite difference steps. Your initial point was feasible, but once fmincon took a tiny step to estimate a derivative, the objective was no longer feasible. fmincon cannot recover from this sort of error at the initial point, though it can recover if the error occurs during subsequent iterations.
Alan Weiss
MATLAB mathematical toolbox documentation
  1 件のコメント
Amir Patel
Amir Patel 2013 年 6 月 18 日
Thanks for clearing that up Alan.
To get around the NaN error, I tried setting a cost to a large value before the Simulink integrator's break.
But now, fmincon is struggling to converge...
Any advice on how to tackle this sort of problem?

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with Optimization Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by