How to give arguments to fmincon using ssest in system identification toolbox?

1 回表示 (過去 30 日間)
No examples exist anywhere as far as I can tell.

採用された回答

Matt J
Matt J 2024 年 10 月 18 日
Perhaps as follows,
opts=ssestOptions(SearchMethod='fmincon');
opts.SearchOptions.Algorithm='trust-region-reflective';
opts.SearchOptions.FunctionTolerance=1e-8;
opts.SearchOptions
ans =
Algorithm: 'trust-region-reflective' StepTolerance: 1.0000e-06 FunctionTolerance: 1.0000e-08 MaxIterations: 100
  3 件のコメント
Matt J
Matt J 2024 年 10 月 20 日
Constraints and bounds are not set by passing arguments to fmincon. They are specified using the init_sys argument to ssest
Johan Lundström
Johan Lundström 2024 年 10 月 21 日
Great! Thanks!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Model Identification についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by