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

« back to all changes in this revision

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