Home

MatrixEquations.jl

Build Status Code on Github.

This collection of Julia functions is an attemp to implement high performance numerical software to solve classes of Lyapunov, Sylvester and Riccati matrix equations at a performance level comparable with efficient structure exploiting Fortran implementations, as those available in the Systems and Control Library SLICOT. This goal has been fully achieved for Lyapunov and Sylvester equation solvers, for which the codes for both real and complex data perform at practically same performance level as similar functions available in the MATLAB Control System Toolbox (which rely on SLICOT).

The available functions in the MatrixEquation.jl package cover both standard and generalized continuous and discrete Lyapunov, Sylvester and Riccati equations for both real and complex data. The functions for the solution of Lyapunov and Sylvester equations rely on efficient structure exploiting solvers for which the input data are in Schur or generalized Schur forms. A comprehensive set of Lyapunov and Sylvester operators has been implemented, which allow the estimation of condition numbers of these operators. The implementation of Riccati equation solvers employ orthogonal Schur vectors based methods and their extensions to linear matrix pencil based reduction approaches. The calls of all functions with adjoint (in complex case) or transposed (in real case) arguments are fully supported by appropriate computational algorithms, thus the matrix copying operations are mostly avoided.

The current version of the package includes the following functions:

Solution of Lyapunov equations

FunctionDescription
lyapcSolution of the continuous Lyapunov equations
lyapdSolution of the discrete Lyapunov equations
plyapcSolution of the positive continuous Lyapunov equations
plyapdSolution of the positive discrete Lyapunov equations

Solution of algebraic Riccati equations

FunctionDescription
arecSolution of the continuous Riccati equations
garecSolution of the generalized continuous Riccati equation
aredSolution of the discrete Riccati equation
garedSolution of the generalized discrete Riccati equation

Solution of Sylvester equations and systems

FunctionDescription
sylvcSolution of the (continuous) Sylvester equations
sylvdSolution of the (discrete) Sylvester equations
gsylvSolution of the generalized Sylvester equations
sylvsysSolution of the Sylvester system of matrix equations
dsylvsysSolution of the dual Sylvester system of matrix equations

Norm, condition and separation estimation of linear operators

FunctionDescription
opnorm1Computation of the 1-norm of a linear operator
opnorm1estEstimation of the 1-norm of a linear operator
oprcondestEstimation of the reciprocal 1-norm condition number of an operator
opsepestEstimation of the separation of a linear operator

The general solvers of Lyapunov and Sylvester equations rely on a set of specialized solvers for real or complex matrices in appropriate Schur forms. For testing purposes, a set of solvers for Sylvester equations has been implemented, which employ the Kronecker-product expansion of the equations. These solvers are not recommended for large order matrices. The norms, reciprocal condition numbers and separations can be estimated for a comprehensive set of predefined Lyapunov and Sylvester operators. A complete list of implemented functions is available here.

Future plans

The collection of tools will be extended by adding new functionality, such as expert solvers which additionally compute error bounds and condition estimates. Furthermore, performance improvements are planned to be implemented employing more efficient and accurate low dimensional linear system solvers available in LAPACK, using static arrays for manipulation of small order matrices, and exploring block variant solvers for Lyapunov and Sylvester equations.

Release Notes

Version 1.0.0

This release is intended to be the first registered version for the public. The latest additions include:

Version 0.8

This release covers the planned main classes of solvers for Lyapunov, Riccati and Sylvester matrix equations. A preliminary version of documentation has been setup. The main addition consists of :

Version 0.2

This release is the first functionally complete collection of solvers. It includes new functions and several enhancements:

Version 0.1.0

This is the initial release covering prototype implementations of several solvers for Lyapunov and Riccati matrix equations and some solvers for Sylvester matrix equations.

Main developer

Andreas Varga

License: MIT (expat)