~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/control/equil.cat

  • 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
equil            Scilab Group            Scilab Function              equil
 
2
NAME
 
3
   equil - balancing of pair of symmetric matrices
 
4
  
 
5
CALLING SEQUENCE
 
6
 T=equil(P,Q)
 
7
PARAMETERS
 
8
 P, Q       : two positive definite symmetric matrices
 
9
            
 
10
 T          : nonsingular matrix
 
11
            
 
12
DESCRIPTION
 
13
   equil returns t such that:
 
14
  
 
15
   T*P*T' and  inv(T)'*Q*inv(T)  are both equal to a same  diagonal and
 
16
  positive matrix.
 
17
  
 
18
EXAMPLE
 
19
 P=rand(4,4);P=P*P';
 
20
 Q=rand(4,4);Q=Q*Q';
 
21
 T=equil(P,Q)
 
22
 clean(T*P*T')
 
23
 clean(inv(T)'*Q*inv(T))
 
24
SEE ALSO
 
25
   equil1, balanc, ctr_gram  
 
26