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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/pt_BR/permute.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) 2008 - INRIA - Farid BELAHCENE
 
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="permute" 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>permute</refname>
 
26
 
 
27
    <refpurpose>permuta as dimens�es de um array</refpurpose>
 
28
  </refnamediv>
 
29
 
 
30
  <refsynopsisdiv>
 
31
    <title>Seq��ncia de Chamamento</title>
 
32
 
 
33
    <synopsis>y=permute(x,dims)</synopsis>
 
34
  </refsynopsisdiv>
 
35
 
 
36
  <refsection>
 
37
    <title>Par�metros</title>
 
38
 
 
39
    <variablelist>
 
40
      <varlistentry>
 
41
        <term>dims</term>
 
42
 
 
43
        <listitem>
 
44
          <para>um escalar ou um vetor de n�meros reais positivos </para>
 
45
        </listitem>
 
46
      </varlistentry>
 
47
 
 
48
      <varlistentry>
 
49
        <term>x</term>
 
50
 
 
51
        <listitem>
 
52
          <para>um escalar, um vetor, uma matriz ou um multi-array</para>
 
53
        </listitem>
 
54
      </varlistentry>
 
55
    </variablelist>
 
56
  </refsection>
 
57
 
 
58
  <refsection>
 
59
    <title>Descri��o</title>
 
60
 
 
61
    <para><literal>y=permute(x,dims) : </literal></para>
 
62
  </refsection>
 
63
 
 
64
  <refsection>
 
65
    <title>Exemplos</title>
 
66
 
 
67
    <programlisting role="example">
 
68
//exemplo 1:
 
69
x=[1 2 3;4 5 6];
 
70
y=permute(x,[2 1]);
 
71
 
 
72
//exemplo 2:
 
73
x=matrix(1:12,[2,3,2]);
 
74
y=permute(x,[3 1 2]);
 
75
</programlisting>
 
76
  </refsection>
 
77
 
 
78
  <refsection>
 
79
    <title>Ver Tamb�m</title>
 
80
 
 
81
    <simplelist type="inline">
 
82
      <member><link linkend="pertrans">pertrans</link></member>
 
83
 
 
84
      <member><link linkend="quote">quote</link></member>
 
85
 
 
86
      <member><link linkend="cat">cat</link></member>
 
87
    </simplelist>
 
88
  </refsection>
 
89
 
 
90
  <refsection>
 
91
    <title>Autor</title>
 
92
 
 
93
    <para>Farid Belahcene</para>
 
94
  </refsection>
 
95
</refentry>