简体   繁体   English

矩阵系统中的MATLAB编码

[英]MATLAB coding in system of matrices

How can we find an unknown matrix from a system of known matrices in MATLAB?我们如何从 MATLAB 中的已知矩阵系统中找到未知矩阵? For example say we have例如说我们有

A=[-15 0; 0 -15], B = [8 2; 2 8], C=[2 1; 1 2], 

and we have to find an unknown matrix P from equation我们必须从方程中找到一个未知矩阵 P

A(T)P + PA+P(t)BP+C = 0

Looks like you're trying to solve the continuous algebraic Riccati equation.看起来您正在尝试求解连续代数 Riccati 方程。 Correct?正确的? If so you're looking to use the care command, more info here .如果是这样,您希望使用care命令,请在此处查看更多信息。 You could also look into the dare command for discrete time.您还可以查看离散时间的dare命令。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM