File: tf2ss.man

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (40 lines) | stat: -rw-r--r-- 683 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
.TH tf2ss 1 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an 
.SH NAME
tf2ss - transfer to state-space
.SH CALLING SEQUENCE
.nf
sl=tf2ss(h [,tol])
.fi
.SH PARAMETERS
.TP
h
: rational matrix
.TP
tol  
: may be the constant rtol or the 2 vector \fV[rtol atol]\fR
.RS
.TP 10
rtol
:tolerance used when evaluating observability.
.TP
atol
:absolute tolerance used when evaluating observability.
.RE
.TP
sl
: linear system (\fVsyslin\fR list \fVsl=[A,B,C,D(s)]\fR)
.SH DESCRIPTION
transfer to state-space conversion: 
.LP
\fVh=C*(s*eye()-A)^-1*B+D(s)\fR
.SH EXAMPLE
.nf
s=poly(0,'s');
H=[2/s,(s+1)/(s^2-5)];
Sys=tf2ss(H)
clean(ss2tf(Sys))
.fi
.SH SEE ALSO
ss2tf, tf2des, des2tf