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

« back to all changes in this revision

Viewing changes to modules/graphics/help/ja_JP/2d_plot/plot2d4.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="ja" xml:id="plot2d4">
14
 
  <refnamediv>
15
 
    <refname>plot2d4</refname>
16
 
    <refpurpose>2次元プロット (矢印形式)</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>呼び出し手順</title>
20
 
    <synopsis>plot2d4([logflag,] x,y,[style,strf,leg,rect,nax])
21
 
      plot2d4(y)
22
 
      plot2d4(x,y &lt;,opt_args&gt;)
23
 
    </synopsis>
24
 
  </refsynopsisdiv>
25
 
  <refsection>
26
 
    <title>パラメータ</title>
27
 
    <variablelist>
28
 
      <varlistentry>
29
 
        <term>args</term>
30
 
        <listitem>
31
 
          <para>
32
 
            パラメータの説明については<literal>plot2d</literal> 参照.
33
 
          </para>
34
 
        </listitem>
35
 
      </varlistentry>
36
 
    </variablelist>
37
 
  </refsection>
38
 
  <refsection>
39
 
    <title>説明</title>
40
 
    <para>
41
 
      <literal>plot2d4</literal> は <literal>plot2d</literal> と同じですが,
42
 
      曲線は矢印形式でプロットされます.これは,
43
 
      位相空間でODEの解をプロットする際に有用です.
44
 
    </para>
45
 
    <para>デフォルトで, 連続するプロットは重ね描きされます.前のプロットを消去するには
46
 
      <literal>clf()</literal>を使用してください.
47
 
    </para>
48
 
    <para>
49
 
      コマンド <literal>plot2d4()</literal> を使用してください. 
50
 
      <literal>plot2dxx</literal> (xx = 1 から 4)により提供されるモードは全て
51
 
      <literal>plot2d</literal>を用いて,
52
 
      <literal>polyline_style</literal>オプションを対応する数字に設定することにより,
53
 
      有効にすることができます.
54
 
    </para>
55
 
  </refsection>
56
 
  <refsection>
57
 
    <title>例</title>
58
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>plot2d4</refname>
 
16
        <refpurpose>2次元プロット (矢印形式)</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼び出し手順</title>
 
20
        <synopsis>plot2d4([logflag,] x,y,[style,strf,leg,rect,nax])
 
21
            plot2d4(y)
 
22
            plot2d4(x,y &lt;,opt_args&gt;)
 
23
        </synopsis>
 
24
    </refsynopsisdiv>
 
25
    <refsection>
 
26
        <title>パラメータ</title>
 
27
        <variablelist>
 
28
            <varlistentry>
 
29
                <term>args</term>
 
30
                <listitem>
 
31
                    <para>
 
32
                        パラメータの説明については<literal>plot2d</literal> 参照.
 
33
                    </para>
 
34
                </listitem>
 
35
            </varlistentry>
 
36
        </variablelist>
 
37
    </refsection>
 
38
    <refsection>
 
39
        <title>説明</title>
 
40
        <para>
 
41
            <literal>plot2d4</literal> は <literal>plot2d</literal> と同じですが,
 
42
            曲線は矢印形式でプロットされます.これは,
 
43
            位相空間でODEの解をプロットする際に有用です.
 
44
        </para>
 
45
        <para>デフォルトで, 連続するプロットは重ね描きされます.前のプロットを消去するには
 
46
            <literal>clf()</literal>を使用してください.
 
47
        </para>
 
48
        <para>
 
49
            コマンド <literal>plot2d4()</literal> を使用してください. 
 
50
            <literal>plot2dxx</literal> (xx = 1 から 4)により提供されるモードは全て
 
51
            <literal>plot2d</literal>を用いて,
 
52
            <literal>polyline_style</literal>オプションを対応する数字に設定することにより,
 
53
            有効にすることができます.
 
54
        </para>
 
55
    </refsection>
 
56
    <refsection>
 
57
        <title>例</title>
 
58
        <programlisting role="example"><![CDATA[ 
59
59
// plot2dを用いた場合と比較
60
60
x=[0:0.1:2*%pi]';
61
61
plot2d4(x,[sin(x) sin(2*x) sin(3*x)])
66
66
e.children(2).polyline_style=4;
67
67
e.children(3).polyline_style=4;
68
68
 ]]></programlisting>
69
 
  </refsection>
70
 
  <refsection role="see also">
71
 
    <title>参照</title>
72
 
    <simplelist type="inline">
73
 
      <member>
74
 
        <link linkend="fchamp">fchamp</link>
75
 
      </member>
76
 
      <member>
77
 
        <link linkend="plot2d">plot2d</link>
78
 
      </member>
79
 
      <member>
80
 
        <link linkend="plot2d2">plot2d2</link>
81
 
      </member>
82
 
      <member>
83
 
        <link linkend="plot2d3">plot2d3</link>
84
 
      </member>
85
 
      <member>
86
 
        <link linkend="subplot">subplot</link>
87
 
      </member>
88
 
      <member>
89
 
        <link linkend="clf">clf</link>
90
 
      </member>
91
 
      <member>
92
 
        <link linkend="polyline_properties">polyline_properties</link>
93
 
      </member>
94
 
    </simplelist>
95
 
  </refsection>
 
69
    </refsection>
 
70
    <refsection role="see also">
 
71
        <title>参照</title>
 
72
        <simplelist type="inline">
 
73
            <member>
 
74
                <link linkend="fchamp">fchamp</link>
 
75
            </member>
 
76
            <member>
 
77
                <link linkend="plot2d">plot2d</link>
 
78
            </member>
 
79
            <member>
 
80
                <link linkend="plot2d2">plot2d2</link>
 
81
            </member>
 
82
            <member>
 
83
                <link linkend="plot2d3">plot2d3</link>
 
84
            </member>
 
85
            <member>
 
86
                <link linkend="subplot">subplot</link>
 
87
            </member>
 
88
            <member>
 
89
                <link linkend="clf">clf</link>
 
90
            </member>
 
91
            <member>
 
92
                <link linkend="polyline_properties">polyline_properties</link>
 
93
            </member>
 
94
        </simplelist>
 
95
    </refsection>
96
96
</refentry>