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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/ja_JP/trigonometry/csc.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:
2
2
<!--
3
3
 * Ajouter ici d'éventuels commentaires sur le fichier XML
4
4
-->
5
 
<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="csc" xml:lang="ja">
6
 
  <refnamediv>
7
 
    <refname>csc</refname>
8
 
    <refpurpose>引数のコセカント(余割)を要素毎に計算する.</refpurpose>
9
 
  </refnamediv>
10
 
  <refsynopsisdiv>
11
 
    <title>呼出し手順</title>
12
 
    <synopsis>y = csc(x)</synopsis>
13
 
  </refsynopsisdiv>
14
 
  <refsection>
15
 
    <title>パラメータ</title>
16
 
    <variablelist>
17
 
      <varlistentry>
18
 
        <term>x</term>
19
 
        <listitem>
20
 
          <para>実数または複素数の配列.</para>
21
 
        </listitem>
22
 
      </varlistentry>
23
 
      <varlistentry>
24
 
        <term>y</term>
25
 
        <listitem>
26
 
          <para>
27
 
            <literal>x</literal>と同じ次元の実数または複素数の配列.
28
 
          </para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
    </variablelist>
32
 
  </refsection>
33
 
  <refsection>
34
 
    <title>説明</title>
35
 
    <para>
36
 
      引数の要素毎のコセカント(余割)を計算します.
37
 
      コセカント(余割)は 1/sin で定義される周期関数です.
38
 
      実数のデータの場合,結果は
39
 
      <literal>]-%inf -1] U [1 %inf[</literal>の範囲の実数となります.
40
 
    </para>
41
 
  </refsection>
42
 
  <refsection>
43
 
    <title>例</title>
44
 
    <programlisting role="example"><![CDATA[ 
 
5
<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="csc" xml:lang="ja">
 
6
    <refnamediv>
 
7
        <refname>csc</refname>
 
8
        <refpurpose>引数のコセカント(余割)を要素毎に計算する.</refpurpose>
 
9
    </refnamediv>
 
10
    <refsynopsisdiv>
 
11
        <title>呼出し手順</title>
 
12
        <synopsis>y = csc(x)</synopsis>
 
13
    </refsynopsisdiv>
 
14
    <refsection>
 
15
        <title>引数</title>
 
16
        <variablelist>
 
17
            <varlistentry>
 
18
                <term>x</term>
 
19
                <listitem>
 
20
                    <para>実数または複素数の配列.</para>
 
21
                </listitem>
 
22
            </varlistentry>
 
23
            <varlistentry>
 
24
                <term>y</term>
 
25
                <listitem>
 
26
                    <para>
 
27
                        <literal>x</literal>と同じ次元の実数または複素数の配列.
 
28
                    </para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
        </variablelist>
 
32
    </refsection>
 
33
    <refsection>
 
34
        <title>説明</title>
 
35
        <para>
 
36
            引数の要素毎のコセカント(余割)を計算します.
 
37
            コセカント(余割)は 1/sin で定義される周期関数です.
 
38
            実数のデータの場合,結果は
 
39
            <literal>]-%inf -1] U [1 %inf[</literal>の範囲の実数となります.
 
40
        </para>
 
41
    </refsection>
 
42
    <refsection>
 
43
        <title>例</title>
 
44
        <scilab:image>
 
45
            x=linspace(0.01,%pi-0.01,200)
 
46
            plot(-x,csc(-x),x,csc(x))
 
47
        </scilab:image>
 
48
    </refsection>
 
49
    <refsection>
 
50
        <title>例</title>
 
51
        <programlisting role="example"><![CDATA[ 
45
52
x=linspace(0.01,%pi-0.01,200)
46
53
clf();
47
54
plot(-x,csc(-x),x,csc(x))
48
55
 ]]></programlisting>
49
 
  </refsection>
50
 
  <refsection role="see also">
51
 
    <title>参照</title>
52
 
    <simplelist type="inline">
53
 
      <member>
54
 
        <link linkend="sec">sec</link>
55
 
      </member>
56
 
      <member>
57
 
        <link linkend="cscd">cscd</link>
58
 
      </member>
59
 
    </simplelist>
60
 
  </refsection>
 
56
    </refsection>
 
57
    <refsection role="see also">
 
58
        <title>参照</title>
 
59
        <simplelist type="inline">
 
60
            <member>
 
61
                <link linkend="sec">sec</link>
 
62
            </member>
 
63
            <member>
 
64
                <link linkend="cscd">cscd</link>
 
65
            </member>
 
66
        </simplelist>
 
67
    </refsection>
61
68
</refentry>