필터 지우기
필터 지우기

How can I solve the Riccati equation with a variable?

조회 수: 2 (최근 30일)
senhan yao
senhan yao 2021년 4월 23일
답변: Jaynik 2024년 4월 4일
I have the fixed value of A,B,Q and a variable R. How can I determine the solution of the Riccati equation P as a function of r?
A=[0 1 0;0 0 1;0 0 0];
B=[0;0;0];
Q=[1 0 0;0 0 0;0 0 0];
R=r;
eqn= A'*P+P*A+Q-P*B*R^(-1)*B'*P==0

답변 (1개)

Jaynik
Jaynik 2024년 4월 4일
For determining the solution of the Riccati equation, you can use the "care" or "icare" function from the "Control System Toolbox". These functions are used to compute unique solution for the given equation.
As per the documentation, starting in R2019a, it is recommended to use the "icare" function to solve the equation as it has improved accuracy through better scaling. Here is a sample code you can refer:
A = [0 1 0; 0 0 1; 0 0 0];
B = [0; 0; 0];
Q = [1 0 0; 0 0 0; 0 0 0];
R = r;
% Solving the Riccati equation using care
[P1, ~, ~] = care(A, B, Q, R);
% Solving the Riccati equation using icare
[P2,~,~,info] = icare(A, B, Q, R);
You can refer the following documentation to know more about each functions:

카테고리

Help CenterFile Exchange에서 Matrix Computations에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by