Please how to Matrix Lyapunov equation?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abdelkader Hd
am 23 Mär. 2022
Beantwortet: Sam Chak
am 23 Mär. 2022
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.
0 Kommentare
Akzeptierte Antwort
Sam Chak
am 23 Mär. 2022
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Computations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!