How to give arguments to fmincon using ssest in system identification toolbox?
1 回表示 (過去 30 日間)
古いコメントを表示
No examples exist anywhere as far as I can tell.
0 件のコメント
採用された回答
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
3 件のコメント
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
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Linear Model Identification についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!