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

« back to all changes in this revision

Viewing changes to modules/linear_algebra/help/pt_BR/matrix/orth.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="orth" xml:lang="en">
 
14
  <refnamediv>
 
15
    <refname>orth</refname>
 
16
    <refpurpose>base ortogonal</refpurpose>
 
17
  </refnamediv>
 
18
  <refsynopsisdiv>
 
19
    <title>Seq��ncia de Chamamento</title>
 
20
    <synopsis>Q=orth(A)</synopsis>
 
21
  </refsynopsisdiv>
 
22
  <refsection>
 
23
    <title>Par�metros</title>
 
24
    <variablelist>
 
25
      <varlistentry>
 
26
        <term>A</term>
 
27
        <listitem>
 
28
          <para>matriz de reais ou complexos</para>
 
29
        </listitem>
 
30
      </varlistentry>
 
31
      <varlistentry>
 
32
        <term>Q</term>
 
33
        <listitem>
 
34
          <para>matriz de reais ou complexos</para>
 
35
        </listitem>
 
36
      </varlistentry>
 
37
    </variablelist>
 
38
  </refsection>
 
39
  <refsection>
 
40
    <title>Descri��o</title>
 
41
    <para>
 
42
      <literal>Q=orth(A)</literal> retorna <literal>Q</literal>, uma base
 
43
      ortogonal para o gerado de <literal>A</literal>. Im(<literal>Q</literal>)
 
44
      = Im(<literal>A</literal>) e <literal>Q'*Q=eye</literal>.
 
45
    </para>
 
46
    <para>
 
47
      O n�mero de colunas de <literal>Q</literal> � o posto de
 
48
      <literal>A</literal> como determinado pelo algoritmo QR.
 
49
    </para>
 
50
  </refsection>
 
51
  <refsection>
 
52
    <title>Exemplos</title>
 
53
    <programlisting role="example"><![CDATA[ 
 
54
A=rand(5,3)*rand(3,4);
 
55
[X,dim]=rowcomp(A);X=X';
 
56
svd([orth(A),X(:,1:dim)])
 
57
 ]]></programlisting>
 
58
  </refsection>
 
59
  <refsection role="see also">
 
60
    <title>Ver Tamb�m</title>
 
61
    <simplelist type="inline">
 
62
      <member>
 
63
        <link linkend="qr">qr</link>
 
64
      </member>
 
65
      <member>
 
66
        <link linkend="rowcomp">rowcomp</link>
 
67
      </member>
 
68
      <member>
 
69
        <link linkend="colcomp">colcomp</link>
 
70
      </member>
 
71
      <member>
 
72
        <link linkend="range">range</link>
 
73
      </member>
 
74
    </simplelist>
 
75
  </refsection>
 
76
</refentry>