フィルターのクリア

Problem regarding using fminunc

2 ビュー (過去 30 日間)
christina
christina 2019 年 1 月 17 日
回答済み: Star Strider 2019 年 1 月 17 日
I'm trying to minimize the spectral norm and run into this problem. How do I solve it?

採用された回答

Star Strider
Star Strider 2019 年 1 月 17 日
One obvious approach is to use an options structure:
opts = optimoptions('fminunc', 'MaxFunctionEvaluations',1E+6);
x0 = ...;
x = fminunc(fun,x0,opts)

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by