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

« back to all changes in this revision

Viewing changes to man/control/balreal.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 balreal 1 "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an 
 
3
.SH NAME
 
4
balreal - balanced realization
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
[slb [,U] ] = balreal(sl)
 
8
.fi
 
9
.SH PARAMETERS
 
10
.TP
 
11
sl,slb
 
12
: linear systems (\fVsyslin\fR lists)
 
13
.SH DESCRIPTION
 
14
Balanced realization of linear system \fVsl=[A,B,C,D]\fR. \fVsl\fR
 
15
can be a continuous-time or discrete-time state-space system. 
 
16
sl is assumed stable.
 
17
.nf
 
18
slb=[inv(U)*A*U ,inv(U)*B , C*U , D]
 
19
.fi
 
20
is the balanced realization.
 
21
.LP
 
22
\fVslb\fR is returned as a \fVsyslin\fR list.
 
23
.SH EXAMPLE
 
24
.nf
 
25
A=diag([-1,-2,-3,-4,-5]);B=rand(5,2);C=rand(1,5);
 
26
sl=syslin('c',A,B,C);
 
27
[slb,U]=balreal(sl);
 
28
Wc=clean(ctr_gram(slb))
 
29
W0=clean(obs_gram(slb))
 
30
.fi
 
31
.SH SEE ALSO
 
32
ctr_gram, obs_gram, hankelsv, equil, equil1
 
33