Help needed in solving a matrix equation

조회 수: 2 (최근 30일)
VUTNOORI VAMSHI
VUTNOORI VAMSHI 2021년 6월 11일
편집: Jan 2021년 6월 15일
clear all;
A= [0,1;1,1];
B= [0,1;1,1];
Q= [2,0;0,4];
R= [0.5,0;0,0.25];
syms p11 p12 p21 p22
P = [p11,p12; p21, p22];
eqn = P*A + transpose(A)*P + Q - (P/2)*B*inv(R)*transpose(B)*P - (P/4)*B*inv(R)*transpose(B)*transpose(P) - (transpose(P)/4)*B*inv(R)*transpose(B)*P ==0;
S = solve(eqn);
disp(P);
I want to find the solution of P matrix, I am kind of new to MATLAB. Any kind of help is appreciated.

답변 (1개)

Jan
Jan 2021년 6월 12일
편집: Jan 2021년 6월 15일
A= [0,1;1,1];
B= [0,1;1,1];
Q= [2,0;0,4];
R= [0.5,0;0,0.25];
syms p11 p12 p21 p22
P = [p11, p12; p21, p22];
eqn = P * A + A.' * P + Q - (P/2) * B * inv(R) * B.' * P - ...
(P/4) * B * inv(R) * B.' * P.' - (P.' / 4) * B * inv(R) * B.' *P == 0;
S = solve(eqn);
S.p11
ans = 
The same for the other components. So you did calculate your solution already, but display the input P instead of the output S.

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by