File: equil1.man

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (48 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.TH equil1 1 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an 
.SH NAME
equil1 - balancing (nonnegative) pair of matrices
.SH CALLING SEQUENCE
.nf
[T [,siz]]=equil1(P,Q [,tol])
.fi
.SH PARAMETERS
.TP 10
P, Q
: two non-negative symmetric matrices
.TP
T
: nonsingular matrix
.TP
siz
: vector of three integers
.TP
tol
: threshold
.SH DESCRIPTION
\fVequil1\fR computes \fVt\fR such that:
.LP
\fVP1=T*P*T'\fR  and \fVQ1=inv(T)'*Q*inv(T)\fR are as follows:
.LP
\fVP1 = diag(S1,S2,0,0)\fR  and \fVQ1 = diag(S1,0,S3,0)\fR with
\fVS1,S2,S3\fR positive and diagonal matrices with respective 
dimensions \fVsiz=[n1,n2,n3]\fR
.LP 
\fVtol\fR is a threshold for rank determination in SVD
.SH EXAMPLE
.nf
S1=rand(2,2);S1=S1*S1';
S2=rand(2,2);S2=S2*S2';
S3=rand(2,2);S3=S3*S3';
P=sysdiag(S1,S2,zeros(4,4));
Q=sysdiag(S1,zeros(2,2),S3,zeros(2,2));
X=rand(8,8);
P=X*P*X';Q=inv(X)'*Q*inv(X);
[T,siz]=equil1(P,Q);
P1=clean(T*P*T')
Q1=clean(inv(T)'*Q*inv(T))
.fi
.SH SEE ALSO
balreal, minreal, equil, hankelsv
.SH AUTHOR
S. Steer 1987