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

« back to all changes in this revision

Viewing changes to modules/special_functions/help/ja_JP/percentasn.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
<?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: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="percentasn">
 
3
    <refnamediv>
 
4
        <refname>%asn</refname>
 
5
        <refpurpose>楕円積分 l</refpurpose>
 
6
    </refnamediv>
 
7
    <refsynopsisdiv>
 
8
        <title>呼び出し手順</title>
 
9
        <synopsis>[y]=%asn(x,m)</synopsis>
 
10
    </refsynopsisdiv>
 
11
    <refsection>
 
12
        <title>パラメータ</title>
 
13
        <variablelist>
 
14
            <varlistentry>
 
15
                <term>x</term>
 
16
                <listitem>
 
17
                    <para>
 
18
                        積分の上限 (<literal>x&gt;0</literal>) (ベクトルにすることが可能)
 
19
                    </para>
 
20
                </listitem>
 
21
            </varlistentry>
 
22
            <varlistentry>
 
23
                <term>m</term>
 
24
                <listitem>
 
25
                    <para>
 
26
                        積分のパラメータ (<literal>0&lt;m&lt;1</literal>)
 
27
                    </para>
 
28
                </listitem>
 
29
            </varlistentry>
 
30
            <varlistentry>
 
31
                <term>y</term>
 
32
                <listitem>
 
33
                    <para>積分値</para>
 
34
                </listitem>
 
35
            </varlistentry>
 
36
        </variablelist>
 
37
    </refsection>
 
38
    <refsection>
 
39
        <title>説明</title>
 
40
        <para>
 
41
            楕円積分を計算します.
 
42
        </para>
 
43
        <para>
 
44
            <literal>x</literal>がベクトルの場合, <literal>y</literal> は
 
45
            <literal>x</literal>と同じ次元のベクトルとなります.
 
46
        </para>
 
47
    </refsection>
 
48
    <refsection>
 
49
        <title>例</title>
 
50
        <programlisting role="example"><![CDATA[ 
 
51
m=0.8;z=%asn(1/sqrt(m),m);K=real(z);Ktilde=imag(z);
 
52
x2max=1/sqrt(m);
 
53
x1=0:0.05:1;x2=1:((x2max-1)/20):x2max;x3=x2max:0.05:10;
 
54
x=[x1,x2,x3];
 
55
y=%asn(x,m);
 
56
rect=[0,-Ktilde,1.1*K,2*Ktilde];
 
57
plot2d(real(y)',imag(y)',1,'011',' ',rect)
 
58
 
 
59
deff('y=f(t)','y=1/sqrt((1-t^2)*(1-m*t^2))');
 
60
intg(0,0.9,f)-%asn(0.9,m)  //実数の場合のみ動作します!
 
61
 ]]></programlisting>
 
62
    </refsection>
 
63
</refentry>