~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/cacsd/help/en_US/cont_mat.xml

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 *
12
12
 -->
13
13
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="en" xml:id="cont_mat">
14
 
  <refnamediv>
15
 
    <refname>cont_mat</refname>
16
 
    <refpurpose> controllability matrix</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Calling Sequence</title>
20
 
    <synopsis>Cc=cont_mat(A,B)
21
 
      Cc=cont_mat(sl)
22
 
    </synopsis>
23
 
  </refsynopsisdiv>
24
 
  <refsection>
25
 
    <title>Arguments</title>
26
 
    <variablelist>
27
 
      <varlistentry>
28
 
        <term>a,b</term>
29
 
        <listitem>
30
 
          <para>two real matrices of appropriate dimensions</para>
31
 
        </listitem>
32
 
      </varlistentry>
33
 
      <varlistentry>
34
 
        <term>sl</term>
35
 
        <listitem>
36
 
          <para>
37
 
            linear system (<literal>syslin</literal> list)
38
 
          </para>
39
 
        </listitem>
40
 
      </varlistentry>
41
 
    </variablelist>
42
 
  </refsection>
43
 
  <refsection>
44
 
    <title>Description</title>
45
 
    <para>
46
 
      <literal>cont_mat</literal> returns the controllability 
47
 
      matrix of the pair <literal>A,B</literal> (resp. of the system <literal>sl=[A,B,C,D]</literal>).
48
 
    </para>
49
 
    <programlisting role=""><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>cont_mat</refname>
 
16
        <refpurpose> controllability matrix</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Calling Sequence</title>
 
20
        <synopsis>Cc=cont_mat(A,B)
 
21
            Cc=cont_mat(sl)
 
22
        </synopsis>
 
23
    </refsynopsisdiv>
 
24
    <refsection>
 
25
        <title>Arguments</title>
 
26
        <variablelist>
 
27
            <varlistentry>
 
28
                <term>a,b</term>
 
29
                <listitem>
 
30
                    <para>two real matrices of appropriate dimensions</para>
 
31
                </listitem>
 
32
            </varlistentry>
 
33
            <varlistentry>
 
34
                <term>sl</term>
 
35
                <listitem>
 
36
                    <para>
 
37
                        linear system (<literal>syslin</literal> list)
 
38
                    </para>
 
39
                </listitem>
 
40
            </varlistentry>
 
41
        </variablelist>
 
42
    </refsection>
 
43
    <refsection>
 
44
        <title>Description</title>
 
45
        <para>
 
46
            <literal>cont_mat</literal> returns the controllability 
 
47
            matrix of the pair <literal>A,B</literal> (resp. of the system <literal>sl=[A,B,C,D]</literal>).
 
48
        </para>
 
49
        <programlisting role=""><![CDATA[ 
50
50
Cc=[B, AB, A^2 B,..., A^(n-1) B]  
51
51
 ]]></programlisting>
52
 
  </refsection>
53
 
  <refsection role="see also">
54
 
    <title>See Also</title>
55
 
    <simplelist type="inline">
56
 
      <member>
57
 
        <link linkend="ctr_gram">ctr_gram</link>
58
 
      </member>
59
 
      <member>
60
 
        <link linkend="contr">contr</link>
61
 
      </member>
62
 
      <member>
63
 
        <link linkend="canon">canon</link>
64
 
      </member>
65
 
      <member>
66
 
        <link linkend="st_ility">st_ility</link>
67
 
      </member>
68
 
    </simplelist>
69
 
  </refsection>
 
52
    </refsection>
 
53
    <refsection role="see also">
 
54
        <title>See Also</title>
 
55
        <simplelist type="inline">
 
56
            <member>
 
57
                <link linkend="ctr_gram">ctr_gram</link>
 
58
            </member>
 
59
            <member>
 
60
                <link linkend="contr">contr</link>
 
61
            </member>
 
62
            <member>
 
63
                <link linkend="canon">canon</link>
 
64
            </member>
 
65
            <member>
 
66
                <link linkend="st_ility">st_ility</link>
 
67
            </member>
 
68
        </simplelist>
 
69
    </refsection>
70
70
</refentry>