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

« back to all changes in this revision

Viewing changes to modules/cacsd/help/ja_JP/plot_display/m_circle.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
<!--
 
3
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 
4
 * Copyright (C) INRIA - Serge Steer
 
5
 * 
 
6
 * This file must be used under the terms of the CeCILL.
 
7
 * This source file is licensed as described in the file COPYING, which
 
8
 * you should have received as part of this distribution.  The terms
 
9
 * are also available at    
 
10
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
 
11
 *
 
12
 -->
 
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: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:lang="ja" xml:id="m_circle">
 
14
    <refnamediv>
 
15
        <refname>m_circle</refname>
 
16
        <refpurpose>y/(1+y) の等ゲイン等高線を複素平面にプロットする</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼出し手順</title>
 
20
        <synopsis>m_circle()
 
21
            m_circle(gain)
 
22
        </synopsis>
 
23
    </refsynopsisdiv>
 
24
    <refsection>
 
25
        <title>パラメータ</title>
 
26
        <variablelist>
 
27
            <varlistentry>
 
28
                <term>gain</term>
 
29
                <listitem>
 
30
                    <para>ゲインベクトル (単位:DB). デフォルト値は</para>
 
31
                    <variablelist>
 
32
                        <varlistentry>
 
33
                            <term>gain</term>
 
34
                            <listitem>
 
35
                                <para>=[-12 -8 -6 -5 -4 -3 -2 -1.4 -1 -.5 0.25 0.5 0.7 1 1.4 2 2.3 3 4 5 6 8 12]</para>
 
36
                            </listitem>
 
37
                        </varlistentry>
 
38
                    </variablelist>
 
39
                </listitem>
 
40
            </varlistentry>
 
41
        </variablelist>
 
42
    </refsection>
 
43
    <refsection>
 
44
        <title>説明</title>
 
45
        <para>
 
46
            <literal>m_circle</literal> は,複素平面(Re,Im)に
 
47
            <literal>gain</literal>引数で指定した
 
48
            等ゲイン等高線を描画します.
 
49
        </para>
 
50
        <para>
 
51
            <literal>gain</literal>のデフォルト値は:
 
52
        </para>
 
53
        <para>
 
54
            <literal>[-12 -8 -6 -5 -4 -3 -2 -1.4 -1 -.5 0.25 0.5 0.7 1 1.4 2 2.3 3 4 5 6 8 12]</literal>
 
55
        </para>
 
56
        <para>
 
57
            <literal>m_circle</literal> は <literal>nyquist</literal>と共に使用されます.
 
58
        </para>
 
59
    </refsection>
 
60
    <refsection>
 
61
        <title>例</title>
 
62
        <programlisting role="example"><![CDATA[
 
63
 
 
64
s=poly(0,'s')
 
65
h=syslin('c',(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01))
 
66
nyquist(h,0.01,100,'(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)')
 
67
m_circle();
 
68
]]></programlisting>
 
69
<scilab:image>
 
70
s=poly(0,'s')
 
71
h=syslin('c',(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01))
 
72
nyquist(h,0.01,100,'(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)')
 
73
m_circle();
 
74
</scilab:image>
 
75
 
 
76
        <programlisting role="example"><![CDATA[
 
77
clf();
 
78
h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225))
 
79
nyquist([h1;h],0.01,100,['h1';'h'])
 
80
m_circle([-8 -6 -4]);
 
81
]]></programlisting>
 
82
        <scilab:image>
 
83
clf();
 
84
h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225))
 
85
nyquist([h1;h],0.01,100,['h1';'h'])
 
86
m_circle([-8 -6 -4]);
 
87
</scilab:image>
 
88
    </refsection>
 
89
    <refsection role="see also">
 
90
        <title>参照</title>
 
91
        <simplelist type="inline">
 
92
            <member>
 
93
                <link linkend="nyquist">nyquist</link>
 
94
            </member>
 
95
            <member>
 
96
                <link linkend="chart">chart</link>
 
97
            </member>
 
98
            <member>
 
99
                <link linkend="black">black</link>
 
100
            </member>
 
101
        </simplelist>
 
102
    </refsection>
 
103
</refentry>