Please how to Matrix Lyapunov equation?
1 回表示 (過去 30 日間)
古いコメントを表示
Hello everyone,
I have one question, please can you tell me how I can solve the Matrix Lyapunov equation using Matlab or Wolfram Mathematica :
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/939009/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/939014/image.png)
Thank you.
0 件のコメント
採用された回答
Sam Chak
2022 年 3 月 23 日
You can use the function lyap to compute the solution to the Lyapunov equation. See the following example:
A = [0 1 0; -1 -2 0; 0 1 -1]
D = 2*eye(3)
X = lyap(A, D)
A*X + X*A' % check: should be the same as –D
0 件のコメント
その他の回答 (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!