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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/fr_FR/floating_point/round.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
1
<?xml version="1.0" encoding="UTF-8"?>
2
2
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns5="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="round" xml:lang="fr">
3
 
  <refnamediv>
4
 
    <refname>round</refname>
5
 
    <refpurpose>Arrondi à l'entier le plus proche</refpurpose>
6
 
  </refnamediv>
7
 
  <refsynopsisdiv>
8
 
    <title>Séquence d'appel</title>
9
 
    <synopsis>y=round(x)</synopsis>
10
 
  </refsynopsisdiv>
11
 
  <refsection>
12
 
    <title>Paramètres</title>
13
 
    <variablelist>
14
 
      <varlistentry>
15
 
        <term>x</term>
16
 
        <listitem>
17
 
          <para>matrice réelle ou complexe</para>
18
 
        </listitem>
19
 
      </varlistentry>
20
 
      <varlistentry>
21
 
        <term>y</term>
22
 
        <listitem>
23
 
          <para>matrice entière (ou complexe avec parties réelle et imaginaire entières)</para>
24
 
        </listitem>
25
 
      </varlistentry>
26
 
    </variablelist>
27
 
  </refsection>
28
 
  <refsection>
29
 
    <title>Description</title>
30
 
    <para>
31
 
      <literal>round(x)</literal> arrondit les éléments de
32
 
      <literal>x</literal> aux entiers les plus proches.
33
 
    </para>
34
 
  </refsection>
35
 
  <refsection>
36
 
    <title>Exemples</title>
37
 
    <programlisting role="example"><![CDATA[ 
 
3
    <refnamediv>
 
4
        <refname>round</refname>
 
5
        <refpurpose>Arrondi à l'entier le plus proche</refpurpose>
 
6
    </refnamediv>
 
7
    <refsynopsisdiv>
 
8
        <title>Séquence d'appel</title>
 
9
        <synopsis>y=round(x)</synopsis>
 
10
    </refsynopsisdiv>
 
11
    <refsection>
 
12
        <title>Paramètres</title>
 
13
        <variablelist>
 
14
            <varlistentry>
 
15
                <term>x</term>
 
16
                <listitem>
 
17
                    <para>matrice réelle ou complexe</para>
 
18
                </listitem>
 
19
            </varlistentry>
 
20
            <varlistentry>
 
21
                <term>y</term>
 
22
                <listitem>
 
23
                    <para>matrice entière (ou complexe avec parties réelle et imaginaire entières)</para>
 
24
                </listitem>
 
25
            </varlistentry>
 
26
        </variablelist>
 
27
    </refsection>
 
28
    <refsection>
 
29
        <title>Description</title>
 
30
        <para>
 
31
            <literal>round(x)</literal> arrondit les éléments de
 
32
            <literal>x</literal> aux entiers les plus proches.
 
33
        </para>
 
34
    </refsection>
 
35
    <refsection>
 
36
        <title>Exemples</title>
 
37
        <programlisting role="example"><![CDATA[ 
38
38
round([1.3 1.5 1.7 2.5 3.7])
39
39
// Remarquez le résultat pour x négatif
40
40
round([-1.3 -1.5 -1.7 -2.5 -3.7])
41
41
round([2.2+%i*23, %pi*%i, -%i ])
42
42
 ]]></programlisting>
43
 
  </refsection>
44
 
  <refsection role="see also">
45
 
    <title>Voir aussi</title>
46
 
    <simplelist type="inline">
47
 
      <member>
48
 
        <link linkend="int">int</link>
49
 
      </member>
50
 
      <member>
51
 
        <link linkend="floor">floor</link>
52
 
      </member>
53
 
      <member>
54
 
        <link linkend="ceil">ceil</link>
55
 
      </member>
56
 
    </simplelist>
57
 
  </refsection>
 
43
    </refsection>
 
44
    <refsection role="see also">
 
45
        <title>Voir aussi</title>
 
46
        <simplelist type="inline">
 
47
            <member>
 
48
                <link linkend="int">int</link>
 
49
            </member>
 
50
            <member>
 
51
                <link linkend="floor">floor</link>
 
52
            </member>
 
53
            <member>
 
54
                <link linkend="ceil">ceil</link>
 
55
            </member>
 
56
        </simplelist>
 
57
    </refsection>
58
58
</refentry>