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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/ja_JP/floating_point/nextpow2.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="nextpow2" xml:lang="ja">
14
 
  <refnamediv>
15
 
    <refname>nextpow2</refname>
16
 
    <refpurpose>次の2のべき乗の値</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>呼び出し手順</title>
20
 
    <synopsis>t=nextpow2(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>p</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>nextpow2(x)</literal>
43
 
      <literal>2^p &gt;=abs(x)</literal>となるような<literal>p</literal>
44
 
      を返します.
45
 
      <literal>x</literal> がベクトルまたは行列の場合,
46
 
      <literal>nextpow2(x)</literal> が要素毎に適用されます.
47
 
    </para>
48
 
  </refsection>
49
 
  <refsection>
50
 
    <title>例</title>
51
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>nextpow2</refname>
 
16
        <refpurpose>次の2のべき乗の値</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼び出し手順</title>
 
20
        <synopsis>t=nextpow2(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>p</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>nextpow2(x)</literal>
 
43
            <literal>2^p &gt;=abs(x)</literal>となるような<literal>p</literal>
 
44
            を返します.
 
45
            <literal>x</literal> がベクトルまたは行列の場合,
 
46
            <literal>nextpow2(x)</literal> が要素毎に適用されます.
 
47
        </para>
 
48
    </refsection>
 
49
    <refsection>
 
50
        <title>例</title>
 
51
        <programlisting role="example"><![CDATA[ 
52
52
nextpow2(127)
53
53
nextpow2(128)
54
54
nextpow2(0:10)
55
55
 ]]></programlisting>
56
 
  </refsection>
57
 
  <refsection role="see also">
58
 
    <title>参照</title>
59
 
    <simplelist type="inline">
60
 
      <member>
61
 
        <link linkend="frexp">frexp</link>
62
 
      </member>
63
 
    </simplelist>
64
 
  </refsection>
 
56
    </refsection>
 
57
    <refsection role="see also">
 
58
        <title>参照</title>
 
59
        <simplelist type="inline">
 
60
            <member>
 
61
                <link linkend="frexp">frexp</link>
 
62
            </member>
 
63
        </simplelist>
 
64
    </refsection>
65
65
</refentry>