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

« back to all changes in this revision

Viewing changes to modules/compatibility_functions/help/fr_FR/mtlb_realmin.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:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="fr" xml:id="mtlb_realmin">
14
 
  <refnamediv>
15
 
    <refname>mtlb_realmin</refname>
16
 
    <refpurpose>Fonction d'émulation de la fonction Matlab realmin</refpurpose>
17
 
  </refnamediv>
18
 
  <refsection>
19
 
    <title>Description</title>
20
 
    <para>
21
 
      L'équivalent Scilab de la fonction Matlab <literal>realmin</literal>
22
 
      est <literal>number_properties</literal> mais tous les cas ne sont pas
23
 
      implémentés :
24
 
    </para>
25
 
    <itemizedlist>
26
 
      <listitem>
27
 
        <para>
28
 
          L'équivalent Scilab de l'expression Matlab
29
 
          <literal>realmin</literal> ou <literal>realmin('double')</literal> est <literal>number_properties("tiny")</literal>
30
 
        </para>
31
 
      </listitem>
32
 
      <listitem>
33
 
        <para>
34
 
          Il n'y a pas d'équivalent Scilab pour l'expression Matlab <literal>realmin('single')</literal>
35
 
        </para>
36
 
      </listitem>
37
 
    </itemizedlist>
38
 
    <para>
39
 
      La fonction <literal>mtlb_realmin(prec)</literal> est utilisée par
40
 
      <literal>mfile2sci</literal> pour remplacer <literal>realmin(prec)</literal> quand il n'était pas
41
 
      possible de savoir ce qu'était le paramètre d'entrée pendant la conversion d'un code
42
 
      Matlab vers Scilab. Cette fonction va
43
 
      déterminer la sémantique correcte pendant l'exécution. Pour obtenir un code plus performant
44
 
      on peut remplacer les appels à <literal>mtlb_realmin</literal> :
45
 
    </para>
46
 
    <itemizedlist>
47
 
      <listitem>
48
 
        <para>
49
 
          Si <literal>prec</literal> est égale à <literal>"double"</literal>
50
 
          <literal>mtlb_realmin(prec)</literal> peut être remplacé par <literal>number_properties("tiny")</literal>
51
 
        </para>
52
 
      </listitem>
53
 
    </itemizedlist>
54
 
    <para>
55
 
      Attention : <literal>mtlb_realmin</literal> ne doit pas être utilisée pour une programmation manuelle.
56
 
    </para>
57
 
  </refsection>
58
 
  <refsection role="see also">
59
 
    <title>Voir aussi</title>
60
 
    <simplelist type="inline">
61
 
      <member>
62
 
        <link linkend="number_properties">number_properties</link>
63
 
      </member>
64
 
    </simplelist>
65
 
  </refsection>
 
14
    <refnamediv>
 
15
        <refname>mtlb_realmin</refname>
 
16
        <refpurpose>Fonction d'émulation de la fonction Matlab realmin</refpurpose>
 
17
    </refnamediv>
 
18
    <refsection>
 
19
        <title>Description</title>
 
20
        <para>
 
21
            L'équivalent Scilab de la fonction Matlab <literal>realmin</literal>
 
22
            est <literal>number_properties</literal> mais tous les cas ne sont pas
 
23
            implémentés :
 
24
        </para>
 
25
        <itemizedlist>
 
26
            <listitem>
 
27
                <para>
 
28
                    L'équivalent Scilab de l'expression Matlab
 
29
                    <literal>realmin</literal> ou <literal>realmin('double')</literal> est <literal>number_properties("tiny")</literal>
 
30
                </para>
 
31
            </listitem>
 
32
            <listitem>
 
33
                <para>
 
34
                    Il n'y a pas d'équivalent Scilab pour l'expression Matlab <literal>realmin('single')</literal>
 
35
                </para>
 
36
            </listitem>
 
37
        </itemizedlist>
 
38
        <para>
 
39
            La fonction <literal>mtlb_realmin(prec)</literal> est utilisée par
 
40
            <literal>mfile2sci</literal> pour remplacer <literal>realmin(prec)</literal> quand il n'était pas
 
41
            possible de savoir ce qu'était le paramètre d'entrée pendant la conversion d'un code
 
42
            Matlab vers Scilab. Cette fonction va
 
43
            déterminer la sémantique correcte pendant l'exécution. Pour obtenir un code plus performant
 
44
            on peut remplacer les appels à <literal>mtlb_realmin</literal> :
 
45
        </para>
 
46
        <itemizedlist>
 
47
            <listitem>
 
48
                <para>
 
49
                    Si <literal>prec</literal> est égale à <literal>"double"</literal>
 
50
                    <literal>mtlb_realmin(prec)</literal> peut être remplacé par <literal>number_properties("tiny")</literal>
 
51
                </para>
 
52
            </listitem>
 
53
        </itemizedlist>
 
54
        <para>
 
55
            Attention : <literal>mtlb_realmin</literal> ne doit pas être utilisée pour une programmation manuelle.
 
56
        </para>
 
57
    </refsection>
 
58
    <refsection role="see also">
 
59
        <title>Voir aussi</title>
 
60
        <simplelist type="inline">
 
61
            <member>
 
62
                <link linkend="number_properties">number_properties</link>
 
63
            </member>
 
64
        </simplelist>
 
65
    </refsection>
66
66
</refentry>