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

« back to all changes in this revision

Viewing changes to modules/signal_processing/help/ja_JP/casc.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="casc">
3
 
  <refnamediv>
4
 
    <refname>casc</refname>
5
 
    <refpurpose>係数からフィルタのカスケード実現を作成</refpurpose>
6
 
  </refnamediv>
7
 
  <refsynopsisdiv>
8
 
    <title>呼び出し手順</title>
9
 
    <synopsis>[cels]=casc(x,z)</synopsis>
10
 
  </refsynopsisdiv>
11
 
  <refsection>
12
 
    <title>パラメータ</title>
13
 
    <variablelist>
14
 
      <varlistentry>
15
 
        <term>x</term>
16
 
        <listitem>
17
 
          <para>
18
 
            
19
 
            
20
 
            (4xN)-行列. この各列は1つのカスケード要素で,
21
 
            その最初の2列のエントリは分子の係数,次の2列のエントリは
22
 
            分母の係数です
23
 
          </para>
24
 
        </listitem>
25
 
      </varlistentry>
26
 
      <varlistentry>
27
 
        <term>z</term>
28
 
        <listitem>
29
 
          <para>カスケード変数を表す文字列</para>
30
 
        </listitem>
31
 
      </varlistentry>
32
 
      <varlistentry>
33
 
        <term>cels</term>
34
 
        <listitem>
35
 
          <para>結果のカスケード表現</para>
36
 
        </listitem>
37
 
      </varlistentry>
38
 
    </variablelist>
39
 
  </refsection>
40
 
  <refsection>
41
 
    <title>説明</title>
42
 
    <para>
43
 
      係数の行列からフィルタのカスケード実現を作成します
44
 
      (ユーティリティ関数).
45
 
    </para>
46
 
  </refsection>
47
 
  <refsection>
48
 
    <title>例</title>
49
 
    <programlisting role="example"><![CDATA[ 
50
 
x=[1,2,3;4,5,6;7,8,9;10,11,12]
51
 
cels=casc(x,'z')
52
 
 ]]></programlisting>
53
 
  </refsection>
54
 
</refentry>