| Scilab Reference Manual |
|---|
linmeq — Sylvester and Lyapunov equations solver
[X(,sep)] = linmeq(task,A,(B,)C,flag,trans(,schur))
| task | : integer option to determine the equation type:
| ||||||||||||||||||||||||||||
| A | : real matrix | ||||||||||||||||||||||||||||
| B | : real matrix | ||||||||||||||||||||||||||||
| C | : real matrix | ||||||||||||||||||||||||||||
| flag | : (optional) integer vector of length 3 or 2 containing options.
Default: flag(1) = 0, flag(2) = 0 (, flag(3) = 0). | ||||||||||||||||||||||||||||
| trans | : (optional) integer specifying a transposition option.
Default: trans = 0. | ||||||||||||||||||||||||||||
| schur | : (optional) integer specifying whether the Hessenberg-Schur or Schur method should be used. Available for task = 1.
Default: schur = 1. | ||||||||||||||||||||||||||||
| X | : | ||||||||||||||||||||||||||||
| sep | : (optional) estimator of Sep(op(A),-op(A)') for (2.a) or Sepd(A,A') for (2.b). |
linmeq function for solving Sylvester and Lyapunov equations using SLICOT routines SB04MD, SB04ND, SB04PD, SB04QD, SB04RD, SB03MD, and SB03OD.
[X] = linmeq(1,A,B,C,flag,trans,schur)
[X,sep] = linmeq(2,A,C,flag,trans)
[X] = linmeq(2,A,C,flag,trans)
[X] = linmeq(3,A,C,flag,trans)
linmeq solves various Sylvester and Lyapunov matrix equations:
op(A)*X + X*op(B) = C, (1a)
op(A)*X*op(B) + X = C, (1b)
op(A)'*X + X*op(A) = C, (2a)
op(A)'*X*op(A) - X = C, (2b)
op(A)'*(op(X)'*op(X)) + (op(X)'*op(X))*op(A) =
- op(C)'*op(C), (3a)
op(A)'*(op(X)'*op(X))*op(A) - op(X)'*op(X) =
- op(C)'*op(C), (3b)
where op(M) = M, or M'.
| 1. | For equation (1a) or (1b), when schur = 1, the Hessenberg-Schur method is used, reducing one matrix to Hessenberg form and the other one to a real Schur form. Otherwise, both matrices are reduced to real Schur forms. If one or both matrices are already reduced to Schur/Hessenberg forms, this could be specified by flag(2) and flag(3). For general matrices, the Hessenberg-Schur method could be significantly more efficient than the Schur method. |
| 2. | For equation (2a) or (2b), matrix C is assumed symmetric. |
| 3. | For equation (3a) or (3b), matrix A must be stable or convergent, respectively. |
| 4. | For equation (3a) or (3b), the computed matrix X is the Cholesky factor of the solution, i.e., the real solution is op(X)'*op(X), where X is an upper triangular matrix. |
V. Sima, Katholieke Univ. Leuven, Belgium, May 1999, May, Sep. 2000. V. Sima, University of Bucharest, Romania, May 2000.
//(1a)
n=40;m=30;
A=rand(n,n);C=rand(n,m);B=rand(m,m);
X = linmeq(1,A,B,C);
norm(A*X+X*B-C,1)
//(1b)
flag=[1,0,0]
X = linmeq(1,A,B,C,flag);
norm(A*X*B+X-C,1)
//(2a)
A=rand(n,n);C=rand(A);C=C+C';
X = linmeq(2,A,C);
norm(A'*X + X*A -C,1)
//(2b)
X = linmeq(2,A,C,[1 0]);
norm(A'*X*A -X-C,1)
//(3a)
A=rand(n,n);
A=A-(max(real(spec(A)))+1)*eye(); //shift eigenvalues
C=rand(A);
X=linmeq(3,A,C);
norm(A'*X'*X+X'*X*A +C'*C,1)
//(3b)
A = [-0.02, 0.02,-0.10, 0.02,-0.03, 0.12;
0.02, 0.14, 0.12,-0.10,-0.02,-0.14;
-0.10, 0.12, 0.05, 0.03,-0.04,-0.04;
0.02,-0.10, 0.03,-0.06, 0.08, 0.11;
-0.03,-0.02,-0.04, 0.08, 0.14,-0.07;
0.12,-0.14,-0.04, 0.11,-0.07, 0.04]
C=rand(A);
X=linmeq(3,A,C,[1 0]);
norm(A'*X'*X*A - X'*X +C'*C,1)
H. Xu, TU Chemnitz, FR Germany, Dec. 1998.
| << krac2 | lin >> |