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

« back to all changes in this revision

Viewing changes to modules/cacsd/help/ja_JP/cont_frm.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="cont_frm">
14
 
  <refnamediv>
15
 
    <refname>cont_frm</refname>
16
 
    <refpurpose>可制御状態空間への変換</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>呼び出し手順</title>
20
 
    <synopsis>[sl]=cont_frm(NUM,den)</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>パラメータ</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>NUM</term>
27
 
        <listitem>
28
 
          <para>多項式行列</para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
      <varlistentry>
32
 
        <term>den</term>
33
 
        <listitem>
34
 
          <para>多項式</para>
35
 
        </listitem>
36
 
      </varlistentry>
37
 
      <varlistentry>
38
 
        <term>sl</term>
39
 
        <listitem>
40
 
          <para>
41
 
            <literal>syslin</literal> リスト, <literal>sl=[A,B,C,D]</literal>.
42
 
          </para>
43
 
        </listitem>
44
 
      </varlistentry>
45
 
    </variablelist>
46
 
  </refsection>
47
 
  <refsection>
48
 
    <title>説明</title>
49
 
    <para>
50
 
      伝達関数 <literal>NUM/den</literal>の可制御状態空間形式.
51
 
    </para>
52
 
  </refsection>
53
 
  <refsection>
54
 
    <title>例</title>
55
 
    <programlisting role="example"><![CDATA[ 
56
 
s=poly(0,'s');NUM=[1+s,s];den=s^2-5*s+1;
57
 
sl=cont_frm(NUM,den); 
58
 
slss=ss2tf(sl);       //NUM/denと比較
59
 
 ]]></programlisting>
60
 
  </refsection>
61
 
  <refsection role="see also">
62
 
    <title>参照</title>
63
 
    <simplelist type="inline">
64
 
      <member>
65
 
        <link linkend="tf2ss">tf2ss</link>
66
 
      </member>
67
 
      <member>
68
 
        <link linkend="canon">canon</link>
69
 
      </member>
70
 
      <member>
71
 
        <link linkend="contr">contr</link>
72
 
      </member>
73
 
    </simplelist>
74
 
  </refsection>
75
 
</refentry>