Parameter estimation Grey-box modeling: Difference between 'lsqnonlin' / 'fmincon' / 'greyest'
이전 댓글 표시
Dear Community,
could anybody please explain me the difference between 'lsqnonlin' / 'fmincon' / 'greyest' in content with Parameter Estimation of Grey-Box models (RC-models)?
Thank you in advance.
답변 (1개)
Udit06
2024년 11월 22일
0 개 추천
Hi Verena,
Each method uniquely addresses different modeling and optimization requirements.
greyest is designed for linear grey-box models with a known structure, making it highly effective for system identification by using input-output data to estimate parameters.
On the other hand, fmincon serves as a flexible nonlinear optimization tool, ideal for tackling problems with complex constraints by minimizing a scalar objective function within specified bounds.
In contrast, lsqnonlin is adept at handling nonlinear least-squares challenges, concentrating on reducing the sum of squared residuals, which makes it particularly well-suited for curve fitting tasks that do not involve extensive constraints.
You can refer to the following MathWorks documentations for more details:
- https://www.mathworks.com/help/optim/ug/lsqnonlin.html
- https://www.mathworks.com/help/ident/ref/greyest.html
- https://www.mathworks.com/help/optim/ug/fmincon.html
I hope this helps.
카테고리
도움말 센터 및 File Exchange에서 Grey-Box Model Estimation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!