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

« back to all changes in this revision

Viewing changes to man/elementary/sysconv.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 sysconv 1 "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
sysconv - system conversion
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
[s1,s2]=sysconv(s1,s2)
 
8
.fi
 
9
.SH PARAMETERS
 
10
s1,s2
 
11
: list (linear \fVsyslin\fR systems)
 
12
.SH DESCRIPTION
 
13
Converts \fVs1\fR and \fVs2\fR into common representation in order that
 
14
system interconnexion operations can be applied. Utility function for
 
15
experts. The conversion rules in given in the following table.
 
16
.TP 8
 
17
"c"  
 
18
: continuous time system
 
19
.TP
 
20
"d"  
 
21
: discrete time system
 
22
.TP
 
23
n
 
24
: sampled system with sampling period n
 
25
.TP
 
26
[]
 
27
: system with undefined time domain
 
28
 
 
29
For mixed systems \fVs1\fR and \fVs2\fR are put in state-space representation.
 
30
.nf
 
31
 s1\\s2|    "c"     |     "d"     |      n2        |     []     |
 
32
 ---------------------------------------------------------------
 
33
 "c"   | nothing    |uncompatible | c2e(s1,n2)     |  c(s2)     |
 
34
 ---------------------------------------------------------------
 
35
 "d"   |uncompatible| nothing     | e(s1,n2)       |  d(s2)     |
 
36
 ---------------------------------------------------------------
 
37
 n1    | c2e(s2,n1) | e(s2,n1)    | n1<>n2 uncomp  |  e(s2,n1)  |
 
38
       |            |             | n1=n2  nothing |            |
 
39
 ---------------------------------------------------------------
 
40
 []    | c(s1)      | d(s1)       | e(s1,n2)       |  nothing   |
 
41
 ---------------------------------------------------------------
 
42
.fi
 
43
With the following meaning:
 
44
.TP 12
 
45
n1,n2    
 
46
: sampling period
 
47
.TP
 
48
c2e(s,n) 
 
49
: the continuous-time system s is transformed into
 
50
a sampled system with sampling period n.
 
51
.TP
 
52
c(s)     
 
53
: conversion to continuous (time domain is \fV"c"\fR)
 
54
.TP
 
55
d(s)     
 
56
: conversion to discrete (time domain is \fV"d"\fR)
 
57
.TP
 
58
e(s,n)   
 
59
: conversion to samples system with period \fVn\fR
 
60
.SH EXAMPLE
 
61
.nf
 
62
s1=ssrand(1,1,2);
 
63
s2=ss2tf(s1);
 
64
[s1,s2]=sysconv(s1,s2);
 
65
.fi
 
66
.SH SEE ALSO
 
67
syslin, ss2tf, tf2ss