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

« back to all changes in this revision

Viewing changes to modules/data_structures/help/pt_BR/getfield.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="getfield" xml:lang="en">
14
 
  <refnamediv>
15
 
    <refname>getfield</refname>
16
 
    <refpurpose>extra��o de campos de listas</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Seq��ncia de Chamamento</title>
20
 
    <synopsis>[x,...]=getfield(i,l)</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>Par�metros</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>x</term>
27
 
        <listitem>
28
 
          <para>matriz de qualquer tipo poss�vel </para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
      <varlistentry>
32
 
        <term>l</term>
33
 
        <listitem>
34
 
          <para>lista, tlist ou mlist </para>
35
 
        </listitem>
36
 
      </varlistentry>
37
 
      <varlistentry>
38
 
        <term>i</term>
39
 
        <listitem>
40
 
          <para>�ndice de campo, ver "extraction" para mais detalhes.</para>
41
 
        </listitem>
42
 
      </varlistentry>
43
 
    </variablelist>
44
 
  </refsection>
45
 
  <refsection>
46
 
    <title>Descri��o</title>
47
 
    <para>
48
 
      Esta fun��o � equivalente � sintaxe <literal>[x,...]=l(i)</literal>
49
 
      para extra��o de campos com a �nica diferen�a de que tamb�m se aplica a
50
 
      objetos <literal>mlist</literal>.
51
 
    </para>
52
 
  </refsection>
53
 
  <refsection>
54
 
    <title>Exemplos</title>
55
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>getfield</refname>
 
16
        <refpurpose>extra��o de campos de listas</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Seq��ncia de Chamamento</title>
 
20
        <synopsis>[x,...]=getfield(i,l)</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>Par�metros</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>x</term>
 
27
                <listitem>
 
28
                    <para>matriz de qualquer tipo poss�vel </para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
            <varlistentry>
 
32
                <term>l</term>
 
33
                <listitem>
 
34
                    <para>lista, tlist ou mlist </para>
 
35
                </listitem>
 
36
            </varlistentry>
 
37
            <varlistentry>
 
38
                <term>i</term>
 
39
                <listitem>
 
40
                    <para>�ndice de campo, ver "extraction" para mais detalhes.</para>
 
41
                </listitem>
 
42
            </varlistentry>
 
43
        </variablelist>
 
44
    </refsection>
 
45
    <refsection>
 
46
        <title>Descri��o</title>
 
47
        <para>
 
48
            Esta fun��o � equivalente � sintaxe <literal>[x,...]=l(i)</literal>
 
49
            para extra��o de campos com a �nica diferen�a de que tamb�m se aplica a
 
50
            objetos <literal>mlist</literal>.
 
51
        </para>
 
52
    </refsection>
 
53
    <refsection>
 
54
        <title>Exemplos</title>
 
55
        <programlisting role="example"><![CDATA[ 
56
56
l=list(1,'qwerw',%s)
57
57
[a,b]=getfield([3 2],l)
58
58
 
60
60
a(1) // a entrada a(1,1,1)
61
61
getfield(1,a) // o primeiro campo do mlist
62
62
 ]]></programlisting>
63
 
  </refsection>
64
 
  <refsection role="see also">
65
 
    <title>Ver Tamb�m</title>
66
 
    <simplelist type="inline">
67
 
      <member>
68
 
        <link linkend="extraction">extraction</link>
69
 
      </member>
70
 
    </simplelist>
71
 
  </refsection>
 
63
    </refsection>
 
64
    <refsection role="see also">
 
65
        <title>Ver Tamb�m</title>
 
66
        <simplelist type="inline">
 
67
            <member>
 
68
                <link linkend="extraction">extraction</link>
 
69
            </member>
 
70
        </simplelist>
 
71
    </refsection>
72
72
</refentry>