lyap
Continuous Lyapunov equation solution.
📝Syntax
X = lyap(A, Q)
📥Input Arguments
Parameter Description
A real matrix
Q real matrix
📤Output Arguments
Parameter Description
X matrix: solution of the Lyapunov equation.
📄Description

X = lyap(A, Q) resolves the Lyapunov equation.

💡Examples
A = [10, 20; -30, -40];
Q = [30, 10; 10, 10];
X = lyap (A, Q)
🔗See Also
dlyap
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub