~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/nlev.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="nlev">
 
14
  <refnamediv>
 
15
    <refname>nlev</refname>
 
16
    <refpurpose> Algorithme de Leverrier   </refpurpose>
 
17
  </refnamediv>
 
18
  <refsynopsisdiv>
 
19
    <title>Séquence d'appel</title>
 
20
    <synopsis>[num,den]=nlev(A,z [,rmax])</synopsis>
 
21
  </refsynopsisdiv>
 
22
  <refsection>
 
23
    <title>Paramètres</title>
 
24
    <variablelist>
 
25
      <varlistentry>
 
26
        <term>A  </term>
 
27
        <listitem>
 
28
          <para>matrice réelle carrée
 
29
          </para>
 
30
        </listitem>
 
31
      </varlistentry>
 
32
      <varlistentry>
 
33
        <term>z  </term>
 
34
        <listitem>
 
35
          <para>chaîne de caractères
 
36
          </para>
 
37
        </listitem>
 
38
      </varlistentry>
 
39
      <varlistentry>
 
40
        <term>rmax  </term>
 
41
        <listitem>
 
42
          <para>
 
43
            paramètre optionnel (voir <literal>bdiag</literal>) 
 
44
          </para>
 
45
        </listitem>
 
46
      </varlistentry>
 
47
    </variablelist>
 
48
  </refsection>
 
49
  <refsection>
 
50
    <title>Description</title>
 
51
    <para>
 
52
      <literal>[num,den]=nlev(A,z [,rmax])</literal> calcule
 
53
      <literal>(z*eye()-A)^(-1)</literal> par bloc diagonalisation de
 
54
      <literal>A</literal> suivie de l'algorithme de Leverrier sur chaque
 
55
      bloc.
 
56
    </para>
 
57
    <para>
 
58
      Cet algorithme est plus efficace que l'algorithme de
 
59
      Leverrier seul, mais il n'est toujours pas parfait !
 
60
    </para>
 
61
  </refsection>
 
62
  <refsection>
 
63
    <title>Exemples</title>
 
64
    <programlisting role="example"><![CDATA[ 
 
65
A=rand(3,3);x=poly(0,'x');
 
66
[NUM,den]=nlev(A,'x')
 
67
clean(den-poly(A,'x'))
 
68
clean(NUM/den-inv(x*eye()-A))
 
69
 ]]></programlisting>
 
70
  </refsection>
 
71
  <refsection role="see also">
 
72
    <title>Voir aussi</title>
 
73
    <simplelist type="inline">
 
74
      <member>
 
75
        <link linkend="coff">coff</link>
 
76
      </member>
 
77
      <member>
 
78
        <link linkend="coffg">coffg</link>
 
79
      </member>
 
80
      <member>
 
81
        <link linkend="glever">glever</link>
 
82
      </member>
 
83
      <member>
 
84
        <link linkend="ss2tf">ss2tf</link>
 
85
      </member>
 
86
    </simplelist>
 
87
  </refsection>
 
88
</refentry>