Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Control Systems - CACSD > Matrix Computation > sylv

sylv

Sylvester equation.

Syntax

sylv(A, B, C, flag)

Arguments

A,B,C

three real matrices of appropriate dimensions.

flag

character string ('c' or 'd')

Description

X= sylv(A, B, C, 'c') computes X, solution of the "continuous time" Sylvester equation

A*X+X*B = C

X=sylv(A, B, C, 'd') computes X, solution of the modified "discrete time" Sylvester equation

A*X*B+X = C

X=-sylv(-A, B, C, 'd') computes X, solution of the real "discrete time" Sylvester equation

A*X*B-X = C

Examples

// Continuous time Sylvester equation:
A = rand(4, 4); C = rand(4, 3); B = rand(3, 3);
X = sylv(A, B, C, 'c');
norm(A*X+X*B-C)

// Modified Discrete time Sylvester equation:
X = sylv(A, B, C, 'd');
norm(A*X*B+X-C)

// Real Discrete time Sylvester equation:
X = -sylv(-A, B, C, 'd');
norm(A*X*B-X-C)

See Also

  • lyap — Lyapunov equation
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:35 CEST 2016