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

« back to all changes in this revision

Viewing changes to modules/linear_algebra/help/fr_FR/state_space/coff.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="fr" xml:id="coff">
 
14
  <refnamediv>
 
15
    <refname>coff</refname>
 
16
    <refpurpose> résolvante (méthode des cofacteurs)  </refpurpose>
 
17
  </refnamediv>
 
18
  <refsynopsisdiv>
 
19
    <title>Séquence d'appel</title>
 
20
    <synopsis>[N,d]=coff(M [,var])</synopsis>
 
21
  </refsynopsisdiv>
 
22
  <refsection>
 
23
    <title>Paramètres</title>
 
24
    <variablelist>
 
25
      <varlistentry>
 
26
        <term>M  </term>
 
27
        <listitem>
 
28
          <para>matrice carrée réelle
 
29
          </para>
 
30
        </listitem>
 
31
      </varlistentry>
 
32
      <varlistentry>
 
33
        <term>var  </term>
 
34
        <listitem>
 
35
          <para>chaîne de caractères (indéterminée des polynômes)
 
36
          </para>
 
37
        </listitem>
 
38
      </varlistentry>
 
39
      <varlistentry>
 
40
        <term>N  </term>
 
41
        <listitem>
 
42
          <para>
 
43
            matrice de polynômes (de même taille que <literal>M</literal>)
 
44
          </para>
 
45
        </listitem>
 
46
      </varlistentry>
 
47
      <varlistentry>
 
48
        <term>d  </term>
 
49
        <listitem>
 
50
          <para>
 
51
            polynôme (polynôme caractéristique de M : <literal>poly(M,var)</literal>)
 
52
          </para>
 
53
        </listitem>
 
54
      </varlistentry>
 
55
    </variablelist>
 
56
  </refsection>
 
57
  <refsection>
 
58
    <title>Description</title>
 
59
    <para>
 
60
      <literal>coff</literal> calcule R=<literal>(s*eye()-M)^-1</literal> pour <literal>M</literal> une matrice réelle. 
 
61
      R est donnée par <literal>N/d</literal>.
 
62
    </para>
 
63
    <para>
 
64
      <literal>N</literal> = matrice des numérateurs (polynômes).
 
65
    </para>
 
66
    <para>
 
67
      <literal>d</literal> = dénominateur commun.
 
68
    </para>
 
69
    <para>
 
70
      <literal>var</literal> chaîne de caractères (indéterminée des polynômes, '<literal>s</literal>' par défaut)
 
71
    </para>
 
72
  </refsection>
 
73
  <refsection>
 
74
    <title>Exemples</title>
 
75
    <programlisting role="example"><![CDATA[ 
 
76
M=[1,2;0,3];
 
77
[N,d]=coff(M)
 
78
N/d
 
79
inv(%s*eye()-M)
 
80
 ]]></programlisting>
 
81
  </refsection>
 
82
  <refsection role="see also">
 
83
    <title>Voir aussi</title>
 
84
    <simplelist type="inline">
 
85
      <member>
 
86
        <link linkend="coffg">coffg</link>
 
87
      </member>
 
88
      <member>
 
89
        <link linkend="ss2tf">ss2tf</link>
 
90
      </member>
 
91
      <member>
 
92
        <link linkend="nlev">nlev</link>
 
93
      </member>
 
94
      <member>
 
95
        <link linkend="poly">poly</link>
 
96
      </member>
 
97
    </simplelist>
 
98
  </refsection>
 
99
</refentry>