~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/eng/robust/rowinout.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>rowinout</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="rowinout"> inner-outer factorization</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>[Inn,X,Gbar]=rowinout(G)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
    <PARAM_INDENT>
 
14
      <PARAM_ITEM>
 
15
        <PARAM_NAME>G</PARAM_NAME>
 
16
        <PARAM_DESCRIPTION>
 
17
          <SP>: linear system (<VERB>syslin</VERB> list) <VERB>[A,B,C,D]</VERB></SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
      <PARAM_ITEM>
 
21
        <PARAM_NAME>Inn</PARAM_NAME>
 
22
        <PARAM_DESCRIPTION>
 
23
          <SP>:  inner factor (<VERB>syslin</VERB> list)</SP>
 
24
        </PARAM_DESCRIPTION>
 
25
      </PARAM_ITEM>
 
26
      <PARAM_ITEM>
 
27
        <PARAM_NAME>Gbar</PARAM_NAME>
 
28
        <PARAM_DESCRIPTION>
 
29
          <SP>:  outer factor (<VERB>syslin</VERB> list)</SP>
 
30
        </PARAM_DESCRIPTION>
 
31
      </PARAM_ITEM>
 
32
      <PARAM_ITEM>
 
33
        <PARAM_NAME>X</PARAM_NAME>
 
34
        <PARAM_DESCRIPTION>
 
35
          <SP>:  row-compressor of <VERB>G</VERB> (<VERB>syslin</VERB> list)</SP>
 
36
        </PARAM_DESCRIPTION>
 
37
      </PARAM_ITEM>
 
38
    </PARAM_INDENT>
 
39
  </PARAM>
 
40
  <DESCRIPTION>
 
41
    <P>
 
42
    Inner-outer factorization (and row compression) of (<VERB>l</VERB>x<VERB>p</VERB>) <VERB>G =[A,B,C,D]</VERB> with <VERB>l&gt;=p</VERB>.</P>
 
43
    <P><VERB>G</VERB> is assumed to be tall (<VERB>l&gt;=p</VERB>) without zero on the imaginary axis
 
44
    and with a <VERB>D</VERB> matrix which is full column rank.</P>
 
45
    <P><VERB>G</VERB> must also be stable for having <VERB>Gbar</VERB> stable.</P>
 
46
    <P><VERB>G</VERB> admits the following inner-outer factorization:</P>
 
47
    <VERBATIM>
 
48
<![CDATA[
 
49
         G = [ Inn ] | Gbar |
 
50
                     |  0   |
 
51
   ]]>
 
52
    </VERBATIM>
 
53
    <P>
 
54
    where <VERB>Inn</VERB> is square and inner (all pass and stable) and <VERB>Gbar</VERB> 
 
55
    square and outer i.e:
 
56
    Gbar is square bi-proper and bi-stable (Gbar inverse is also proper 
 
57
    and stable);</P>
 
58
    <P>
 
59
    Note that:</P>
 
60
    <VERBATIM>
 
61
<![CDATA[
 
62
         [ Gbar ]
 
63
   X*G = [  -   ]
 
64
         [  0   ]
 
65
   ]]>
 
66
    </VERBATIM>
 
67
    <P>
 
68
    is a row compression of <VERB>G</VERB> where <VERB>X</VERB> = <VERB>Inn</VERB> inverse is all-pass i.e:</P>
 
69
    <VERBATIM>
 
70
<![CDATA[
 
71
 T
 
72
X (-s) X(s) = Identity
 
73
   ]]>
 
74
    </VERBATIM>
 
75
    <P>
 
76
    (for the continous time case).</P>
 
77
  </DESCRIPTION>
 
78
  <SEE_ALSO>
 
79
    <SEE_ALSO_ITEM>
 
80
      <LINK>syslin</LINK>
 
81
    </SEE_ALSO_ITEM>
 
82
    <SEE_ALSO_ITEM>
 
83
      <LINK>colinout</LINK>
 
84
    </SEE_ALSO_ITEM>
 
85
  </SEE_ALSO>
 
86
</MAN>