X = lyap(A, Q)
| Parameter | Description |
|---|---|
| A | real matrix |
| Q | real matrix |
| Parameter | Description |
|---|---|
| X | matrix: solution of the Lyapunov equation. |
X = lyap(A, Q) resolves the Lyapunov equation.
A = [10, 20; -30, -40];
Q = [30, 10; 10, 10];
X = lyap (A, Q)
| Version | Description |
|---|---|
| 1.0.0 | initial version |