Static Public Member Functions | List of all members
corbo::LyapunovDiscrete Class Reference

Methods for dealing with discrete-time lyapunov equations. More...

#include <lyapunov_discrete.h>

Static Public Member Functions

static bool hasUniqueSolution (const Eigen::Ref< const Eigen::MatrixXd > &A)
 Determine if the Lyapunov equation exhibits a unique solution. More...
 
static bool solve (const Eigen::Ref< const Eigen::MatrixXd > &A, const Eigen::Ref< const Eigen::MatrixXd > &Q, Eigen::MatrixXd &X)
 Solve discrete-time Lyapunov equation. More...
 

Detailed Description

Methods for dealing with discrete-time lyapunov equations.

The discrete-time Lyapunov equation is given by

\[ A X A^T - X + Q = 0 \]

If Q is symmetric, solution X is symmetric as well. If A is stable (eigenvalues inside unit-circle) and Q is positive definite, solution X is positive definite as well. A and Q must be square.

Remarks
The Lyapunov equation is a special case of the more general Sylvester equation. We still provide this particular class in order to provide a more dedicated implementation in terms of efficiency.
See also
SylvesterDiscrete SylvesterContinuous LyapunovContinuous AlgebraicRiccatiContinuous AlgebraicRiccatiDiscrete
Author
Christoph Rösmann (chris.nosp@m.toph.nosp@m..roes.nosp@m.mann.nosp@m.@tu-d.nosp@m.ortm.nosp@m.und.d.nosp@m.e)
Todo:

Add support for the generalized Lyapunov equations $ A X A^T - E X E^T + Q = 0 $.

Allow the user to precompute the Schur decomposition for subsequent calls of solve() with varying $ Q $.

Definition at line 58 of file lyapunov_discrete.h.

Member Function Documentation

◆ hasUniqueSolution()

bool corbo::LyapunovDiscrete::hasUniqueSolution ( const Eigen::Ref< const Eigen::MatrixXd > &  A)
static

Determine if the Lyapunov equation exhibits a unique solution.

The solution is unique if for Eigenvalues of A it is: $ \lambda_i \lambda_j \neq 1, \forall i,j. $

Parameters
[in]AMatrix (might be non-square)
Returns
true if the solution is unique, false otherwise (also if matrix A is not square).

Definition at line 88 of file lyapunov_discrete.cpp.

◆ solve()

bool corbo::LyapunovDiscrete::solve ( const Eigen::Ref< const Eigen::MatrixXd > &  A,
const Eigen::Ref< const Eigen::MatrixXd > &  Q,
Eigen::MatrixXd &  X 
)
static

Solve discrete-time Lyapunov equation.

Solve $ A X A^T - X + Q = 0 $ w.r.t. $ X $. If Q is symmetric, solution X is symmetric as well. If A is stable (eigenvalues inside unit-circle) and Q is positive definite, solution X is positive definite as well. A and Q must be square. The solution is unique if for Eigenvalues of A it is: $ \lambda_i \lambda_j \neq 1, \forall i,j. $

The solution is obtained via Schur decomposition [1-3].

[1] A. Y. Barraud. "A numerical algorithm to solve AT XA − X = Q". IEEE Trans. Automat. Control, AC-22, pp. 883–885, 1977. [2] V. Simoncini. "Computational Methods for Linear Matrix Equations". SIAM Review 58 (3): 377-441, 2016. [3] G. Kitagawa. "An Algorithm for Solving the Matrix Equation X = F X F' + S". International Journal of Control. 25 (5): 745–753, 1977.

Warning
Input matrix sizes are checked only in debug mode and occuring issues immediately break execution
Parameters
[in]ASquare matrix
[in]QSquare matrix with same size as A
[out]XSolution with same size as A and Q (size(X) must not be preallocated a-priori)
Returns
true if a finite solution is found, false otherwise.

Definition at line 37 of file lyapunov_discrete.cpp.


The documentation for this class was generated from the following files:


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Mon Feb 28 2022 22:08:02