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

« back to all changes in this revision

Viewing changes to modules/linear_algebra/help/pt_BR/pencil/lyap.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="ISO-8859-1"?>
 
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:ns4="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="lyap" xml:lang="en">
 
14
  <refnamediv>
 
15
    <refname>lyap</refname>
 
16
    <refpurpose>equa��o de Lyapunov</refpurpose>
 
17
  </refnamediv>
 
18
  <refsynopsisdiv>
 
19
    <title>Seq��ncia de Chamamento</title>
 
20
    <synopsis>[X]=lyap(A,C,'c')
 
21
      [X]=lyap(A,C,'d')
 
22
    </synopsis>
 
23
  </refsynopsisdiv>
 
24
  <refsection>
 
25
    <title>Par�metros</title>
 
26
    <variablelist>
 
27
      <varlistentry>
 
28
        <term>A, C</term>
 
29
        <listitem>
 
30
          <para>
 
31
            matrizes quadradas de reais, <literal>C</literal> deve ser
 
32
            sim�trica
 
33
          </para>
 
34
        </listitem>
 
35
      </varlistentry>
 
36
    </variablelist>
 
37
  </refsection>
 
38
  <refsection>
 
39
    <title>Descri��o</title>
 
40
    <para>
 
41
      <literal>X= lyap(A,C,flag)</literal> resolve as equa��es matriciais
 
42
      de tempo cont�nuo ou de tempo discreto de Lyapunov:
 
43
    </para>
 
44
    <programlisting role=""><![CDATA[ 
 
45
A'*X + X*A = C       ( flag='c' )
 
46
A'*X*A - X = C       ( flag='d' )
 
47
 ]]></programlisting>
 
48
    <para>Perceba que existe uma �nica solu��o se e s� se um autovalor de
 
49
      <literal>A</literal> n�o � um autovalor de <literal>-A</literal>
 
50
      (<literal>flag='c'</literal>) ou 1 sobre um autovalor de
 
51
      <literal>A</literal> (<literal>flag='d'</literal>).
 
52
    </para>
 
53
  </refsection>
 
54
  <refsection>
 
55
    <title>Exemplos</title>
 
56
    <programlisting role="example"><![CDATA[ 
 
57
A=rand(4,4);C=rand(A);C=C+C';
 
58
X=lyap(A,C,'c');
 
59
A'*X + X*A -C
 
60
X=lyap(A,C,'d');
 
61
A'*X*A - X -C
 
62
 ]]></programlisting>
 
63
  </refsection>
 
64
  <refsection role="see also">
 
65
    <title>Ver Tamb�m</title>
 
66
    <simplelist type="inline">
 
67
      <member>
 
68
        <link linkend="sylv">sylv</link>
 
69
      </member>
 
70
      <member>
 
71
        <link linkend="ctr_gram">ctr_gram</link>
 
72
      </member>
 
73
      <member>
 
74
        <link linkend="obs_gram">obs_gram</link>
 
75
      </member>
 
76
    </simplelist>
 
77
  </refsection>
 
78
</refentry>