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

« back to all changes in this revision

Viewing changes to modules/linear_algebra/help/ja_JP/pencil/sylv.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) 2008 - 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="sylv">
 
14
  <refnamediv>
 
15
    <refname>sylv</refname>
 
16
    <refpurpose> シルベスタ方程式.  </refpurpose>
 
17
  </refnamediv>
 
18
  <refsynopsisdiv>
 
19
    <title>呼び出し手順</title>
 
20
    <synopsis>sylv(A,B,C,flag)</synopsis>
 
21
  </refsynopsisdiv>
 
22
  <refsection>
 
23
    <title>パラメータ</title>
 
24
    <variablelist>
 
25
      <varlistentry>
 
26
        <term>A,B,C</term>
 
27
        <listitem>
 
28
          <para>適当な次元の実数行列.</para>
 
29
        </listitem>
 
30
      </varlistentry>
 
31
      <varlistentry>
 
32
        <term>flag</term>
 
33
        <listitem>
 
34
          <para>
 
35
            文字列 (<literal>'c'</literal> または <literal>'d'</literal>)
 
36
          </para>
 
37
        </listitem>
 
38
      </varlistentry>
 
39
    </variablelist>
 
40
  </refsection>
 
41
  <refsection>
 
42
    <title>説明</title>
 
43
    <para>
 
44
      <literal>X= sylv(A,B,C,'c')</literal> は 
 
45
      "連続時間" シルベスタ方程式の解<literal>X</literal>を計算する, 
 
46
    </para>
 
47
    <programlisting role=""><![CDATA[ 
 
48
A*X+X*B=C 
 
49
 ]]></programlisting>
 
50
    <para>
 
51
      <literal>X=sylv(A,B,C,'d')</literal> は 
 
52
      "離散時間" シルベスタ方程式の解<literal>X</literal>を計算する, 
 
53
    </para>
 
54
    <programlisting role=""><![CDATA[ 
 
55
A*X*B-X=C
 
56
 ]]></programlisting>
 
57
  </refsection>
 
58
  <refsection>
 
59
    <title>例</title>
 
60
    <programlisting role="example"><![CDATA[ 
 
61
A=rand(4,4);C=rand(4,3);B=rand(3,3);
 
62
X = sylv(A,B,C,'c');
 
63
norm(A*X+X*B-C)
 
64
X=sylv(A,B,C,'d') 
 
65
norm(A*X*B-X-C)
 
66
 ]]></programlisting>
 
67
  </refsection>
 
68
  <refsection>
 
69
    <title>参考</title>
 
70
    <simplelist type="inline">
 
71
      <member>
 
72
        <link linkend="lyap">lyap</link>
 
73
      </member>
 
74
    </simplelist>
 
75
  </refsection>
 
76
</refentry>