fmincon and fmiunc gives different result for the same problem

3 ビュー (過去 30 日間)
HN
HN 2020 年 11 月 29 日
コメント済み: HN 2020 年 11 月 29 日
Can anyone help how to setup the result from fmincon and fminunc to give the same result for same problem ?
Thanks

採用された回答

Walter Roberson
Walter Roberson 2020 年 11 月 29 日
This is expected. fmincon() and fminunc() use different algorithms.
You might possibly be able to get somewhere by forcing fminunc to use 'trust-region' algorithm, which requires that your function outputs the gradient as its second output, and requires some flags set in the options. You would in turn configure fmincon to use 'trust-region-reflective'; again that requires that your function outputs the gradient as its second output, and requires some flags set in the options.
It is not entirely clear to me that the 'trust-region' algorithm of fminunc is the same as 'trust-region-reflective' of fmincon .
  1 件のコメント
HN
HN 2020 年 11 月 29 日
Thank you so much Walter Roberson ,
I also have two more quesions.
  1. Fminunc option I used can only dispaly the final optimum point or cannot list all searched points toward the optimum point. How can I handle that. or
  2. Can I automatically pick the minimum value of the funciton and corresponding optimum point ?
Thank you

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNonlinear Optimization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by