~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/control/equil.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.TH equil 1 "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an 
 
3
.SH NAME
 
4
equil - balancing of pair of symmetric matrices
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
T=equil(P,Q)
 
8
.fi
 
9
.SH PARAMETERS
 
10
.TP 10
 
11
P, Q
 
12
: two positive definite symmetric matrices
 
13
.TP
 
14
T
 
15
: nonsingular matrix
 
16
.SH DESCRIPTION
 
17
\fVequil\fR returns \fVt\fR such that:
 
18
.LP
 
19
\fVT*P*T'\fR and  \fVinv(T)'*Q*inv(T)\fR  are both equal to a same 
 
20
diagonal and positive matrix.
 
21
.SH EXAMPLE
 
22
.nf
 
23
P=rand(4,4);P=P*P';
 
24
Q=rand(4,4);Q=Q*Q';
 
25
T=equil(P,Q)
 
26
clean(T*P*T')
 
27
clean(inv(T)'*Q*inv(T))
 
28
.fi
 
29
.SH SEE ALSO
 
30
equil1, balanc, ctr_gram
 
31
 
 
32