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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/ja_JP/trigonometry/acsc.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:
1
1
<?xml version="1.0" encoding="utf-8"?>
2
 
<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="acsc" xml:lang="ja">
3
 
  <refnamediv>
4
 
    <refname>acsc</refname>
5
 
    <refpurpose>引数の逆余割を要素毎に計算する.</refpurpose>
6
 
  </refnamediv>
7
 
  <refsynopsisdiv>
8
 
    <title>呼び出し手順</title>
9
 
    <synopsis>y = acsc(x)</synopsis>
10
 
  </refsynopsisdiv>
11
 
  <refsection>
12
 
    <title>パラメータ</title>
13
 
    <variablelist>
14
 
      <varlistentry>
15
 
        <term>x</term>
16
 
        <listitem>
17
 
          <para>実数または複素数の配列.</para>
18
 
        </listitem>
19
 
      </varlistentry>
20
 
      <varlistentry>
21
 
        <term>y</term>
22
 
        <listitem>
23
 
          <para>実数または複素数の配列.</para>
24
 
        </listitem>
25
 
      </varlistentry>
26
 
    </variablelist>
27
 
  </refsection>
28
 
  <refsection>
29
 
    <title>説明</title>
30
 
    <para>
31
 
      引数の逆余割を要素毎に計算する.
32
 
      絶対値が1より大きい実数引数の場合,結果は実数となる.
33
 
    </para>
34
 
    <para>
35
 
      以下の等式が成り立つ: <literal>acsc(z) = -acsc(-z) =
36
 
        asin(1/z) = %pi/2-asec(z) = %i*acsch(%i*z)
37
 
      </literal>
38
 
    </para>
39
 
  </refsection>
40
 
  <refsection>
41
 
    <title>例</title>
42
 
    <programlisting role="example"><![CDATA[ 
 
2
<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" xmlns:scilab="http://www.scilab.org" version="5.0-subset Scilab" xml:id="acsc" xml:lang="ja">
 
3
    <refnamediv>
 
4
        <refname>acsc</refname>
 
5
        <refpurpose>引数の逆余割を要素毎に計算する.</refpurpose>
 
6
    </refnamediv>
 
7
    <refsynopsisdiv>
 
8
        <title>呼び出し手順</title>
 
9
        <synopsis>y = acsc(x)</synopsis>
 
10
    </refsynopsisdiv>
 
11
    <refsection>
 
12
        <title>引数</title>
 
13
        <variablelist>
 
14
            <varlistentry>
 
15
                <term>x</term>
 
16
                <listitem>
 
17
                    <para>実数または複素数の配列.</para>
 
18
                </listitem>
 
19
            </varlistentry>
 
20
            <varlistentry>
 
21
                <term>y</term>
 
22
                <listitem>
 
23
                    <para>実数または複素数の配列.</para>
 
24
                </listitem>
 
25
            </varlistentry>
 
26
        </variablelist>
 
27
    </refsection>
 
28
    <refsection>
 
29
        <title>説明</title>
 
30
        <para>
 
31
            引数の逆余割を要素毎に計算します.
 
32
            絶対値が1より大きい実数引数の場合,結果は実数となります.
 
33
        </para>
 
34
        <para>
 
35
            以下の等式が成り立ちます: <literal>acsc(z) = -acsc(-z) =
 
36
                asin(1/z) = %pi/2-asec(z) = %i*acsch(%i*z)
 
37
            </literal>
 
38
        </para>
 
39
    </refsection>
 
40
    <refsection>
 
41
        <title>例</title>
 
42
        <scilab:image>
 
43
            x=linspace(1,20,200);
 
44
            x=[-x($:-1:1) %nan x];
 
45
            plot(x,acsc(x))
 
46
        </scilab:image>
 
47
    </refsection>
 
48
    <refsection>
 
49
        <title>例</title>
 
50
        <programlisting role="example"><![CDATA[ 
43
51
x=linspace(1,20,200);
44
52
x=[-x($:-1:1) %nan x];
45
53
plot(x,acsc(x))
46
54
 ]]></programlisting>
47
 
  </refsection>
48
 
  <refsection role="see also">
49
 
    <title>参照</title>
50
 
    <simplelist type="inline">
51
 
      <member>
52
 
        <link linkend="csc">csc</link>
53
 
      </member>
54
 
      <member>
55
 
        <link linkend="acscd">acscd</link>
56
 
      </member>
57
 
      <member>
58
 
        <link linkend="acsch">acsch</link>
59
 
      </member>
60
 
    </simplelist>
61
 
  </refsection>
62
 
  <refsection>
63
 
    <title>リファレンス</title>
64
 
    <simplelist type="vert">
65
 
      <member>Kahan, W., "Branch cuts for complex elementary functions, or,
66
 
        Much ado about nothing's sign bit", Proceedings of the joing IMA/SIAM
67
 
        conference on The State of the Art in Numerical Analysis, University of
68
 
        Birmingham, A. Iserles and M.J.D. Powell, eds, Clarendon Press, Oxford,
69
 
        1987, 165-210.
70
 
      </member>
71
 
    </simplelist>
72
 
  </refsection>
 
55
    </refsection>
 
56
    <refsection role="see also">
 
57
        <title>参照</title>
 
58
        <simplelist type="inline">
 
59
            <member>
 
60
                <link linkend="csc">csc</link>
 
61
            </member>
 
62
            <member>
 
63
                <link linkend="acscd">acscd</link>
 
64
            </member>
 
65
            <member>
 
66
                <link linkend="acsch">acsch</link>
 
67
            </member>
 
68
        </simplelist>
 
69
    </refsection>
 
70
    <refsection>
 
71
        <title>リファレンス</title>
 
72
        <simplelist type="vert">
 
73
            <member>Kahan, W., "Branch cuts for complex elementary functions, or,
 
74
                Much ado about nothing's sign bit", Proceedings of the joing IMA/SIAM
 
75
                conference on The State of the Art in Numerical Analysis, University of
 
76
                Birmingham, A. Iserles and M.J.D. Powell, eds, Clarendon Press, Oxford,
 
77
                1987, 165-210.
 
78
            </member>
 
79
        </simplelist>
 
80
    </refsection>
73
81
</refentry>