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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/ja_JP/discrete/primes.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:ns5="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="primes" xml:lang="ja">
14
 
  <refnamediv>
15
 
    <refname>primes</refname>
16
 
    <refpurpose>素数関数</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>呼び出し手順</title>
20
 
    <synopsis>[y]=primes(x)</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>パラメータ</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>x</term>
27
 
        <listitem>
28
 
          <para>実数のスカラー</para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
      <varlistentry>
32
 
        <term>y</term>
33
 
        <listitem>
34
 
          <para>ベクトル</para>
35
 
        </listitem>
36
 
      </varlistentry>
37
 
    </variablelist>
38
 
  </refsection>
39
 
  <refsection>
40
 
    <title>説明</title>
41
 
    <para>
42
 
      実数 <literal>x</literal>を指定すると, <literal>primes(x)</literal>
43
 
      は,1 と <literal>x</literal>の間の全ての素数を含む
44
 
      ベクトル<literal>y</literal>を返します.
45
 
      <literal>x&lt;2 </literal>の場合,
46
 
      <literal>primes(x)</literal> は空の行列を返します.
47
 
    </para>
48
 
  </refsection>
49
 
  <refsection>
50
 
    <title>例</title>
51
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>primes</refname>
 
16
        <refpurpose>素数関数</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼び出し手順</title>
 
20
        <synopsis>[y]=primes(x)</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>パラメータ</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>x</term>
 
27
                <listitem>
 
28
                    <para>実数のスカラー</para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
            <varlistentry>
 
32
                <term>y</term>
 
33
                <listitem>
 
34
                    <para>ベクトル</para>
 
35
                </listitem>
 
36
            </varlistentry>
 
37
        </variablelist>
 
38
    </refsection>
 
39
    <refsection>
 
40
        <title>説明</title>
 
41
        <para>
 
42
            実数 <literal>x</literal>を指定すると, <literal>primes(x)</literal>
 
43
            は,1 と <literal>x</literal>の間の全ての素数を含む
 
44
            ベクトル<literal>y</literal>を返します.
 
45
            <literal>x&lt;2 </literal>の場合,
 
46
            <literal>primes(x)</literal> は空の行列を返します.
 
47
        </para>
 
48
    </refsection>
 
49
    <refsection>
 
50
        <title>例</title>
 
51
        <programlisting role="example"><![CDATA[ 
52
52
x=35
53
53
y=primes(x)
54
54
 ]]></programlisting>
55
 
  </refsection>
56
 
  <refsection role="see also">
57
 
    <title>参照</title>
58
 
    <simplelist type="inline">
59
 
      <member>
60
 
        <link linkend="factor">factor</link>
61
 
      </member>
62
 
    </simplelist>
63
 
  </refsection>
 
55
    </refsection>
 
56
    <refsection role="see also">
 
57
        <title>参照</title>
 
58
        <simplelist type="inline">
 
59
            <member>
 
60
                <link linkend="factor">factor</link>
 
61
            </member>
 
62
        </simplelist>
 
63
    </refsection>
64
64
</refentry>