Algebraic Riccati Equation Solution for Code Generation
46 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
Knowing that the lqr, care and icare functions do not currently support code generation, does anyone have an alternative (code or function) that can be used for the computation of the state variable gain for a linear quadratic regulator?
In the past I have gone down the route of trying to solve the algebraic ricatti equation (ARE) using the Hamiltonian matrix (below is for the CARE, though can be altered for the DARE) to get the ARE solution using the schur function.
Whilst the schur decomposition supports code generation I also needed the ordschur function, which does not support code generation, to reorder the eigenvalues.
I actually can't remember if the ordschur is critical to the solution, so part of my question is do I even need to reorder the decomposition in order to appropriately solve the ARE, and if so if theres an alternative to ordschur that is support for code generation?
Z = [A -(B/R*B'); -Q -A'];
[U, S] = schur(Z);
[U, S] = ordschur(U, S, 'lhp');
[m,n] = size(U);
U11 = U(1:(m/2), 1:(n/2));
U21 = U((m/2+1):m, 1:(n/2));
P = U21/U11;
K = inv(R)*B'*P
Thanks in advance!
Just some links for context:
0 件のコメント
回答 (2 件)
Erivelton Gualter
2021 年 6 月 8 日
The solution of riccati equation using Simulink was answed here:
It worked great for my application, which also evolves code generation. The solution is presented in the following link:
I needed to change a line of code. Just check the comments of this file exchange page.
1 件のコメント
Gary Zhang
2022 年 4 月 8 日
Thank you very much Erivelton. Your first link is working for real time code gen.
Victory Friday
2022 年 2 月 1 日
Please did you finally find a way around it, I am having similar challenge.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Computations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!