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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Model Identification에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by