Please how to Matrix Lyapunov equation?

조회 수: 2 (최근 30일)
Abdelkader Hd
Abdelkader Hd 2022년 3월 23일
답변: Sam Chak 2022년 3월 23일
Hello everyone,
I have one question, please can you tell me how I can solve the Matrix Lyapunov equation using Matlab or Wolfram Mathematica :
and this differential matrix equation: .
Thank you.

채택된 답변

Sam Chak
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개)

카테고리

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