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

« back to all changes in this revision

Viewing changes to modules/linear_algebra/help/pt_BR/rref.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:ns5="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="rref" xml:lang="en">
14
 
  <refnamediv>
15
 
    <refname>rref</refname>
16
 
    <refpurpose>computa a matriz-linha reduzida a forma escada por
17
 
      transforma��es de LU
18
 
    </refpurpose>
19
 
  </refnamediv>
20
 
  <refsynopsisdiv>
21
 
    <title>Seq��ncia de Chamamento</title>
22
 
    <synopsis>R=rref(A)</synopsis>
23
 
  </refsynopsisdiv>
24
 
  <refsection>
25
 
    <title>Par�metros</title>
26
 
    <variablelist>
27
 
      <varlistentry>
28
 
        <term>A</term>
29
 
        <listitem>
30
 
          <para>matriz m x n com entradas escalares </para>
31
 
        </listitem>
32
 
      </varlistentry>
33
 
      <varlistentry>
34
 
        <term>R</term>
35
 
        <listitem>
36
 
          <para>matriz m x n, forma escada de A</para>
37
 
        </listitem>
38
 
      </varlistentry>
39
 
    </variablelist>
40
 
  </refsection>
41
 
  <refsection>
42
 
    <title>Descri��o</title>
43
 
    <para>
44
 
      <literal>rref</literal> computa a forma escada de linhas reduzidas
45
 
      da matriz dada pela decomposi��o esquerda LU. Se for necess�ria a
46
 
      transforma��o usada, basta chamar <literal>X=rref([A,eye(m,m)])</literal>
47
 
      A forma escada de linhas reduzidas <literal>R</literal> �
48
 
      <literal>X(:,1:n)</literal> e a transforma��o esquerda
49
 
      <literal>L</literal> i� dada por <literal>X(:,n+1:n+m)</literal> tal como
50
 
      <literal>L*A=R</literal>
51
 
    </para>
52
 
  </refsection>
53
 
  <refsection>
54
 
    <title>Exemplos</title>
55
 
    <programlisting role="example"><![CDATA[ 
56
 
A=[1 2;3 4;5 6];
57
 
X=rref([A,eye(3,3)]);
58
 
R=X(:,1:2)
59
 
L=X(:,3:5);L*A
60
 
 ]]></programlisting>
61
 
  </refsection>
62
 
  <refsection role="see also">
63
 
    <title>Ver Tamb�m</title>
64
 
    <simplelist type="inline">
65
 
      <member>
66
 
        <link linkend="lu">lu</link>
67
 
      </member>
68
 
      <member>
69
 
        <link linkend="qr">qr</link>
70
 
      </member>
71
 
    </simplelist>
72
 
  </refsection>
73
 
</refentry>