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

« back to all changes in this revision

Viewing changes to man/robust/tf2des.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 tf2des 1 "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
tf2des - transfer function to descriptor
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
S=tf2des(G)
 
8
S=tf2des(G,flag)
 
9
.fi
 
10
.SH PARAMETERS
 
11
.TP
 
12
G
 
13
: linear system (\fVsyslin\fR list) with possibly polynomial \fVD\fR matrix
 
14
.TP
 
15
flag
 
16
: character string \fV"withD"\fR
 
17
.TP
 
18
S
 
19
: list
 
20
.SH DESCRIPTION
 
21
Transfer function to descriptor form: \fVS=list('d',A,B,C,D,E)\fR
 
22
.nf
 
23
  E*xdot = A*x+B*u
 
24
  y = C*x + D*u
 
25
.fi
 
26
Note that \fVD=0\fR if the optional parameter flag=\fV"withD"\fR is not
 
27
given. Otherwise a maximal rank \fVD\fR matrix is returned in the fifth
 
28
entry of the list \fVS\fR
 
29
.SH EXAMPLE
 
30
.nf
 
31
s=poly(0,'s');
 
32
G=[1/(s-1),s;1,2/s^3];
 
33
S1=tf2des(G);des2tf(S1)
 
34
S2=tf2des(G,"withD");des2tf(S2)
 
35
.fi
 
36
.SH SEE ALSO
 
37
pol2des, tf2ss, ss2des, des2tf
 
38