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

« back to all changes in this revision

Viewing changes to modules/signal_processing/help/ja_JP/filters/zpch2.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="zpch2">
 
3
    <refnamediv>
 
4
        <refname>zpch2</refname>
 
5
        <refpurpose>チェビシェフアナログフィルタ</refpurpose>
 
6
    </refnamediv>
 
7
    <refsynopsisdiv>
 
8
        <title>呼び出し手順</title>
 
9
        <synopsis>[zeros,poles,gain]=zpch2(n,A,omegar)</synopsis>
 
10
    </refsynopsisdiv>
 
11
    <refsection>
 
12
        <title>パラメータ</title>
 
13
        <variablelist>
 
14
            <varlistentry>
 
15
                <term>n</term>
 
16
                <listitem>
 
17
                    <para>整数 : フィルタ次数</para>
 
18
                </listitem>
 
19
            </varlistentry>
 
20
            <varlistentry>
 
21
                <term>A</term>
 
22
                <listitem>
 
23
                    <para>
 
24
                        実数 : 阻止域の減衰 (<literal>A&gt;1</literal>)
 
25
                    </para>
 
26
                </listitem>
 
27
            </varlistentry>
 
28
            <varlistentry>
 
29
                <term>omegar</term>
 
30
                <listitem>
 
31
                    <para>実数 : カットオフ周波数(Hz) </para>
 
32
                </listitem>
 
33
            </varlistentry>
 
34
            <varlistentry>
 
35
                <term>zeros</term>
 
36
                <listitem>
 
37
                    <para>結果のフィルタのゼロ</para>
 
38
                </listitem>
 
39
            </varlistentry>
 
40
            <varlistentry>
 
41
                <term>poles</term>
 
42
                <listitem>
 
43
                    <para>結果のフィルタの極</para>
 
44
                </listitem>
 
45
            </varlistentry>
 
46
            <varlistentry>
 
47
                <term>gain</term>
 
48
                <listitem>
 
49
                    <para>結果のフィルタのゲイン</para>
 
50
                </listitem>
 
51
            </varlistentry>
 
52
        </variablelist>
 
53
    </refsection>
 
54
    <refsection>
 
55
        <title>説明</title>
 
56
        <para>
 
57
            2形チェビシェフアナログフィルタの極およびゼロ.
 
58
            gainはフィルタのゲインです.
 
59
        </para>
 
60
        <programlisting role=""><![CDATA[ 
 
61
H(s)=gain*poly(zeros,'s')/poly(poles,'s')
 
62
 ]]></programlisting>
 
63
    </refsection>
 
64
</refentry>