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

« back to all changes in this revision

Viewing changes to modules/cacsd/help/ja_JP/tf2ss.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 - 
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" version="5.0-subset Scilab" xml:lang="ja" xml:id="tf2ss">
14
 
  <refnamediv>
15
 
    <refname>tf2ss</refname>
16
 
    <refpurpose> 伝達関数から状態空間表現への変換</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>呼出し手順</title>
20
 
    <synopsis>sl=tf2ss(h [,tol])</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>パラメータ</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>h</term>
27
 
        <listitem>
28
 
          <para>有理行列</para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
      <varlistentry>
32
 
        <term>tol</term>
33
 
        <listitem>
34
 
          <para>
35
 
            定数 rtol または要素数2のベクトル <literal>[rtol atol]</literal>となります.
36
 
          </para>
37
 
          <variablelist>
38
 
            <varlistentry>
39
 
              <term>rtol</term>
40
 
              <listitem>
41
 
                <para>可観測性を評価する際に使用される相対許容誤差.</para>
42
 
              </listitem>
43
 
            </varlistentry>
44
 
            <varlistentry>
45
 
              <term>atol</term>
46
 
              <listitem>
47
 
                <para>可観測性を評価する際に使用される絶対許容誤差.</para>
48
 
              </listitem>
49
 
            </varlistentry>
50
 
          </variablelist>
51
 
        </listitem>
52
 
      </varlistentry>
53
 
      <varlistentry>
54
 
        <term>sl</term>
55
 
        <listitem>
56
 
          <para>
57
 
            線形システム (<literal>syslin</literal> リスト <literal>sl=[A,B,C,D(s)]</literal>)
58
 
          </para>
59
 
        </listitem>
60
 
      </varlistentry>
61
 
    </variablelist>
62
 
  </refsection>
63
 
  <refsection>
64
 
    <title>説明</title>
65
 
    <para>
66
 
      伝達関数から状態空間表現への変換:
67
 
    </para>
68
 
    <para>
69
 
      <literal>h=C*(s*eye()-A)^-1*B+D(s)</literal>
70
 
    </para>
71
 
  </refsection>
72
 
  <refsection>
73
 
    <title>例</title>
74
 
    <programlisting role="example"><![CDATA[ 
75
 
s=poly(0,'s');
76
 
H=[2/s,(s+1)/(s^2-5)];
77
 
Sys=tf2ss(H)
78
 
clean(ss2tf(Sys))
79
 
 ]]></programlisting>
80
 
  </refsection>
81
 
  <refsection role="see also">
82
 
    <title>参照</title>
83
 
    <simplelist type="inline">
84
 
      <member>
85
 
        <link linkend="ss2tf">ss2tf</link>
86
 
      </member>
87
 
      <member>
88
 
        <link linkend="tf2des">tf2des</link>
89
 
      </member>
90
 
      <member>
91
 
        <link linkend="des2tf">des2tf</link>
92
 
      </member>
93
 
    </simplelist>
94
 
  </refsection>
95
 
</refentry>