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

« back to all changes in this revision

Viewing changes to modules/graphics/help/en_US/plzr.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" xmlns:scilab="http://www.scilab.org" version="5.0-subset Scilab" xml:lang="en" xml:id="plzr">
14
 
  <refnamediv>
15
 
    <refname>plzr</refname>
16
 
    <refpurpose> pole-zero plot</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Calling Sequence</title>
20
 
    <synopsis>plzr(sl)</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>Arguments</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>sl</term>
27
 
        <listitem>
28
 
          <para>
29
 
            list ( <literal>syslin</literal>)
30
 
          </para>
31
 
        </listitem>
32
 
      </varlistentry>
33
 
    </variablelist>
34
 
  </refsection>
35
 
  <refsection>
36
 
    <title>Description</title>
37
 
    <para>
38
 
      produces a pole-zero plot of the linear system
39
 
      <literal>sl</literal> (<literal>syslin</literal> list)
40
 
    </para>
41
 
  </refsection>
42
 
  <!--  <refsection>
 
14
    <refnamediv>
 
15
        <refname>plzr</refname>
 
16
        <refpurpose> pole-zero plot</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Calling Sequence</title>
 
20
        <synopsis>plzr(sl)</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>Arguments</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>sl</term>
 
27
                <listitem>
 
28
                    <para>
 
29
                        list ( <literal>syslin</literal>)
 
30
                    </para>
 
31
                </listitem>
 
32
            </varlistentry>
 
33
        </variablelist>
 
34
    </refsection>
 
35
    <refsection>
 
36
        <title>Description</title>
 
37
        <para>
 
38
            produces a pole-zero plot of the linear system
 
39
            <literal>sl</literal> (<literal>syslin</literal> list)
 
40
        </para>
 
41
    </refsection>
 
42
    <!--  <refsection>
43
43
    <title>Sample</title>
44
44
    <scilab:image localized="true">
45
45
      s=poly(0,'s');
49
49
      plzr(h);
50
50
    </scilab:image>
51
51
  </refsection>-->
52
 
  <refsection>
53
 
    <title>Examples</title>
54
 
    <programlisting role="example"><![CDATA[ 
 
52
    <refsection>
 
53
        <title>Examples</title>
 
54
        <programlisting role="example"><![CDATA[ 
55
55
s=poly(0,'s');
56
56
n=[1+s   2+3*s+4*s^2        5; 0        1-s             s];
57
57
d=[1+3*s   5-s^3           s+1;1+s     1+s+s^2      3*s-1];
58
58
h=syslin('c',n./d); 
59
59
plzr(h);
60
60
 ]]></programlisting>
61
 
  </refsection>
62
 
  <refsection role="see also">
63
 
    <title>See Also</title>
64
 
    <simplelist type="inline">
65
 
      <member>
66
 
        <link linkend="trzeros">trzeros</link>
67
 
      </member>
68
 
      <member>
69
 
        <link linkend="roots">roots</link>
70
 
      </member>
71
 
      <member>
72
 
        <link linkend="syslin">syslin</link>
73
 
      </member>
74
 
    </simplelist>
75
 
  </refsection>
 
61
    </refsection>
 
62
    <refsection role="see also">
 
63
        <title>See Also</title>
 
64
        <simplelist type="inline">
 
65
            <member>
 
66
                <link linkend="trzeros">trzeros</link>
 
67
            </member>
 
68
            <member>
 
69
                <link linkend="roots">roots</link>
 
70
            </member>
 
71
            <member>
 
72
                <link linkend="syslin">syslin</link>
 
73
            </member>
 
74
        </simplelist>
 
75
    </refsection>
76
76
</refentry>