~ubuntu-branches/ubuntu/lucid/scilab/lucid

« back to all changes in this revision

Viewing changes to modules/polynomials/help/pt_BR/lcmdiag.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2009-04-28 18:47:03 UTC
  • mfrom: (1.1.7 upstream) (4.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090428184703-7thddz8vtwqmxmx2
Tags: 5.1.1-4
* librefblas3-dev does not exist (yet). Thanks to Jose Ramon
* Do not stop when ocamlopt is not available on the arch 
  (ocaml-not-available.diff)
* Provide a clear error message for archs where modelicac compiler is 
  not available (modelicac-not-available.diff)
* scilab startup script moved from package scilab => scilab-bin (because of
  the ocamlopt problem, I cannot predict if modelicac will be available or
  not. Therefor, I ship usr/bin/ instead of binary per binary. This will
  also simplifies the packaging of Scilab 5.2)

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) 2006-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 version="5.0-subset Scilab" xml:id="lcmdiag" xml:lang="en"
 
14
          xmlns="http://docbook.org/ns/docbook"
 
15
          xmlns:xlink="http://www.w3.org/1999/xlink"
 
16
          xmlns:svg="http://www.w3.org/2000/svg"
 
17
          xmlns:ns4="http://www.w3.org/1999/xhtml"
 
18
          xmlns:mml="http://www.w3.org/1998/Math/MathML"
 
19
          xmlns:db="http://docbook.org/ns/docbook">
 
20
  <info>
 
21
    <pubdate>$LastChangedDate$</pubdate>
 
22
  </info>
 
23
 
 
24
  <refnamediv>
 
25
    <refname>lcmdiag</refname>
 
26
 
 
27
    <refpurpose>fatora��o diagonal por MMC</refpurpose>
 
28
  </refnamediv>
 
29
 
 
30
  <refsynopsisdiv>
 
31
    <title> Seq��ncia de Chamamento </title>
 
32
 
 
33
    <synopsis>[N,D]=lcmdiag(H)
 
34
[N,D]=lcmdiag(H,flag)</synopsis>
 
35
  </refsynopsisdiv>
 
36
 
 
37
  <refsection>
 
38
    <title>Par�metros</title>
 
39
 
 
40
    <variablelist>
 
41
      <varlistentry>
 
42
        <term>H</term>
 
43
 
 
44
        <listitem>
 
45
          <para>matriz de raz�es de polin�mios </para>
 
46
        </listitem>
 
47
      </varlistentry>
 
48
 
 
49
      <varlistentry>
 
50
        <term>N</term>
 
51
 
 
52
        <listitem>
 
53
          <para>matriz de polin�mios </para>
 
54
        </listitem>
 
55
      </varlistentry>
 
56
 
 
57
      <varlistentry>
 
58
        <term>D</term>
 
59
 
 
60
        <listitem>
 
61
          <para>matriz de polin�mios diagonal </para>
 
62
        </listitem>
 
63
      </varlistentry>
 
64
 
 
65
      <varlistentry>
 
66
        <term>flag</term>
 
67
 
 
68
        <listitem>
 
69
          <para>string: <literal>'row'</literal> ou <literal>'col'</literal>
 
70
          (padr�o)</para>
 
71
        </listitem>
 
72
      </varlistentry>
 
73
    </variablelist>
 
74
  </refsection>
 
75
 
 
76
  <refsection>
 
77
    <title>Descri��o</title>
 
78
 
 
79
    <para><literal>[N,D]=lcmdiag(H,'row')</literal> computa uma fatora��o
 
80
    <literal>D*H=N</literal>, i.e. <literal>H=D^(-1)*N</literal> onde D � uma
 
81
    matriz diagonal com D(k,k)=MMC da k-�sima linha de H('den').</para>
 
82
 
 
83
    <para><literal>[N,D]=lcmdiag(H)</literal> ou
 
84
    <literal>[N,D]=lcmdiag(H,'col)</literal> retorna
 
85
    <literal>H=N*D^(-1)</literal> com matriz diagonal D e D(k,k)=MMC da
 
86
    k-�sima coluna de H('den')</para>
 
87
  </refsection>
 
88
 
 
89
  <refsection>
 
90
    <title>Exemplos</title>
 
91
 
 
92
    <programlisting role="example">
 
93
 
 
94
s=poly(0,'s');
 
95
H=[1/s,(s+2)/s/(s+1)^2;1/(s^2*(s+2)),2/(s+2)];
 
96
[N,D]=lcmdiag(H);
 
97
N/D-H
 
98
 
 
99
  </programlisting>
 
100
  </refsection>
 
101
 
 
102
  <refsection>
 
103
    <title> Ver Tamb�m </title>
 
104
 
 
105
    <simplelist type="inline">
 
106
      <member><link linkend="lcm">lcm</link></member>
 
107
 
 
108
      <member><link linkend="gcd">gcd</link></member>
 
109
 
 
110
      <member><link linkend="bezout">bezout</link></member>
 
111
    </simplelist>
 
112
  </refsection>
 
113
</refentry>