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

« back to all changes in this revision

Viewing changes to modules/graphics/help/en_US/axes_operations/subplot.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="subplot">
14
 
  <refnamediv>
15
 
    <refname>subplot</refname>
16
 
    <refpurpose> divide a graphics window into a matrix of sub-windows</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Calling Sequence</title>
20
 
    <synopsis>subplot(m,n,p)
21
 
      subplot(mnp)
22
 
    </synopsis>
23
 
  </refsynopsisdiv>
24
 
  <refsection>
25
 
    <title>Arguments</title>
26
 
    <variablelist>
27
 
      <varlistentry>
28
 
        <term>m,n,p</term>
29
 
        <listitem>
30
 
          <para>positive integers</para>
31
 
        </listitem>
32
 
      </varlistentry>
33
 
      <varlistentry>
34
 
        <term>mnp</term>
35
 
        <listitem>
36
 
          <para>
37
 
            an integer with decimal notation <literal>mnp</literal>
38
 
          </para>
39
 
        </listitem>
40
 
      </varlistentry>
41
 
    </variablelist>
42
 
  </refsection>
43
 
  <refsection>
44
 
    <title>Description</title>
45
 
    <para>
46
 
      subplot(m,n,p) or subplot(mnp) breaks the graphics window
47
 
      into an m-by-n matrix of sub-windows and selects the p-th sub-window
48
 
      for drawing  the current plot.  The number of a sub-window into the
49
 
      matrices is counted row by row ie the sub-window corresponding to element
50
 
      (i,j) of the matrix has number (i-1)*n + j.
51
 
    </para>
52
 
  </refsection>
53
 
  <refsection>
54
 
    <title>Sample</title>
55
 
    <scilab:image>
56
 
      subplot(221)
57
 
      plot2d()
58
 
      subplot(222)
59
 
      plot3d()
60
 
      subplot(2,2,3)
61
 
      param3d()
62
 
      subplot(2,2,4)
63
 
      hist3d()
64
 
      
65
 
    </scilab:image>
66
 
  </refsection>
67
 
  <refsection>
68
 
    <title>Examples</title>
69
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>subplot</refname>
 
16
        <refpurpose> divide a graphics window into a matrix of sub-windows</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Calling Sequence</title>
 
20
        <synopsis>subplot(m,n,p)
 
21
            subplot(mnp)
 
22
        </synopsis>
 
23
    </refsynopsisdiv>
 
24
    <refsection>
 
25
        <title>Arguments</title>
 
26
        <variablelist>
 
27
            <varlistentry>
 
28
                <term>m,n,p</term>
 
29
                <listitem>
 
30
                    <para>positive integers</para>
 
31
                </listitem>
 
32
            </varlistentry>
 
33
            <varlistentry>
 
34
                <term>mnp</term>
 
35
                <listitem>
 
36
                    <para>
 
37
                        an integer with decimal notation <literal>mnp</literal>
 
38
                    </para>
 
39
                </listitem>
 
40
            </varlistentry>
 
41
        </variablelist>
 
42
    </refsection>
 
43
    <refsection>
 
44
        <title>Description</title>
 
45
        <para>
 
46
            subplot(m,n,p) or subplot(mnp) breaks the graphics window
 
47
            into an m-by-n matrix of sub-windows and selects the p-th sub-window
 
48
            for drawing  the current plot.  The number of a sub-window into the
 
49
            matrices is counted row by row ie the sub-window corresponding to element
 
50
            (i,j) of the matrix has number (i-1)*n + j.
 
51
        </para>
 
52
    </refsection>
 
53
    <refsection>
 
54
        <title>Sample</title>
 
55
        <scilab:image>
 
56
            subplot(221)
 
57
            plot2d()
 
58
            subplot(222)
 
59
            plot3d()
 
60
            subplot(2,2,3)
 
61
            param3d()
 
62
            subplot(2,2,4)
 
63
            hist3d()
 
64
            
 
65
        </scilab:image>
 
66
    </refsection>
 
67
    <refsection>
 
68
        <title>Examples</title>
 
69
        <programlisting role="example"><![CDATA[ 
70
70
subplot(221)
71
71
plot2d()
72
72
subplot(222)
76
76
subplot(2,2,4)
77
77
hist3d()
78
78
 ]]></programlisting>
79
 
  </refsection>
80
 
  <refsection role="see also">
81
 
    <title>See Also</title>
82
 
    <simplelist type="inline">
83
 
      <member>
84
 
        <link linkend="plot2d">plot2d</link>
85
 
      </member>
86
 
      <member>
87
 
        <link linkend="plot3d">plot3d</link>
88
 
      </member>
89
 
      <member>
90
 
        <link linkend="xstring">xstring</link>
91
 
      </member>
92
 
      <member>
93
 
        <link linkend="xtitle">xtitle</link>
94
 
      </member>
95
 
    </simplelist>
96
 
  </refsection>
 
79
    </refsection>
 
80
    <refsection role="see also">
 
81
        <title>See Also</title>
 
82
        <simplelist type="inline">
 
83
            <member>
 
84
                <link linkend="plot2d">plot2d</link>
 
85
            </member>
 
86
            <member>
 
87
                <link linkend="plot3d">plot3d</link>
 
88
            </member>
 
89
            <member>
 
90
                <link linkend="xstring">xstring</link>
 
91
            </member>
 
92
            <member>
 
93
                <link linkend="xtitle">xtitle</link>
 
94
            </member>
 
95
        </simplelist>
 
96
    </refsection>
97
97
</refentry>