Help needed in solving a matrix equation

13 次查看(过去 30 天)
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 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by