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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/pt_BR/matrixoperations/kron.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:
11
11
 *
12
12
 -->
13
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:ns3="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="kron" xml:lang="en">
14
 
  <refnamediv>
15
 
    <refname>kron</refname>
16
 
    <refpurpose>produto de Kronecker (.*.) </refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Seq��ncia de Chamamento</title>
20
 
    <synopsis>kron(A,B)
21
 
      A.*.B
22
 
    </synopsis>
23
 
  </refsynopsisdiv>
24
 
  <refsection>
25
 
    <title>Descri��o</title>
26
 
    <para>
27
 
      <literal>kron(A,B)</literal> ou <literal>A.*.B</literal> retorna o
28
 
      produto tensorial de Kronecker entre duas matrizes <literal>A</literal> e
29
 
      <literal>B</literal>. A matriz resultante tem a seguinte forma de blocos:
30
 
    </para>
31
 
    <programlisting role=""><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>kron</refname>
 
16
        <refpurpose>produto de Kronecker (.*.) </refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Seq��ncia de Chamamento</title>
 
20
        <synopsis>kron(A,B)
 
21
            A.*.B
 
22
        </synopsis>
 
23
    </refsynopsisdiv>
 
24
    <refsection>
 
25
        <title>Descri��o</title>
 
26
        <para>
 
27
            <literal>kron(A,B)</literal> ou <literal>A.*.B</literal> retorna o
 
28
            produto tensorial de Kronecker entre duas matrizes <literal>A</literal> e
 
29
            <literal>B</literal>. A matriz resultante tem a seguinte forma de blocos:
 
30
        </para>
 
31
        <programlisting role=""><![CDATA[ 
32
32
              | A(1,1) B ..... A(1,n) B |
33
33
              |   .              .      |
34
34
    A .*. B = |   .              .      |   
35
35
              |   .              .      |
36
36
              | A(m,1) B ..... A(m,n) B |
37
37
 ]]></programlisting>
38
 
    <para>
39
 
      Se <literal>A</literal> � uma matriz <literal>m x n</literal> e
40
 
      <literal>B</literal> � uma matriz <literal>p x q</literal> , ent�o
41
 
      <literal>A.*.B</literal> � uma matriz <literal>(m*p) x
42
 
        (n*q)
43
 
      </literal>
44
 
      .
45
 
    </para>
46
 
    <para>
47
 
      <literal>A</literal> e <literal>B</literal> podem ser matrizes
48
 
      esparsas.
49
 
    </para>
50
 
  </refsection>
51
 
  <refsection>
52
 
    <title>Exemplos</title>
53
 
    <programlisting role="example"><![CDATA[ 
 
38
        <para>
 
39
            Se <literal>A</literal> � uma matriz <literal>m x n</literal> e
 
40
            <literal>B</literal> � uma matriz <literal>p x q</literal> , ent�o
 
41
            <literal>A.*.B</literal> � uma matriz <literal>(m*p) x
 
42
                (n*q)
 
43
            </literal>
 
44
            .
 
45
        </para>
 
46
        <para>
 
47
            <literal>A</literal> e <literal>B</literal> podem ser matrizes
 
48
            esparsas.
 
49
        </para>
 
50
    </refsection>
 
51
    <refsection>
 
52
        <title>Exemplos</title>
 
53
        <programlisting role="example"><![CDATA[ 
54
54
A=[1,2;3,4];
55
55
kron(A,A)
56
56
A.*.A
58
58
A(1,1)=%i;
59
59
kron(A,A)
60
60
 ]]></programlisting>
61
 
  </refsection>
 
61
    </refsection>
62
62
</refentry>