~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/fr/mtlb/mtlb_ones.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!-- When this file is modified please also modify -->
 
3
<!-- mtlb_false.xml mtlb_true.xml mtlb_eye.xml mtlb_zeros.xml mtlb_rand.xml mtlb_randn.xml -->
 
4
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
5
<MAN>
 
6
  <LANGUAGE>fr</LANGUAGE>
 
7
  <TITLE>mtlb_ones</TITLE>
 
8
  <TYPE>Fonction M2SCI</TYPE>
 
9
  <DATE>Avril 2004</DATE>
 
10
 
 
11
  <SHORT_DESCRIPTION name="mtlb_ones">Fonction d'�mulation de la fonction Matlab ones</SHORT_DESCRIPTION>
 
12
 
 
13
  <DESCRIPTION>
 
14
 
 
15
    <P>Dans plusieurs cas particuliers, la fonction <VERB>ones</VERB> se comporte diff�remment dans Matlab et dans Scilab :</P>
 
16
 
 
17
    <DESCRIPTION_INDENT>
 
18
    <DESCRIPTION_ITEM>
 
19
    <ITEMIZE>
 
20
      <ITEM>
 
21
        <SP>
 
22
        Avec une entr�e qui est un scalaire : La fonction Matlab <VERB>ones</VERB> retourne une
 
23
        matrice n x n alors que Scilab retourne 1.
 
24
        </SP>
 
25
      </ITEM>
 
26
    </ITEMIZE>
 
27
    </DESCRIPTION_ITEM>
 
28
    </DESCRIPTION_INDENT>
 
29
 
 
30
    <P>
 
31
    La fonction <VERB>mtlb_ones(A)</VERB> est utilis�e par
 
32
    <VERB>mfile2sci</VERB> pour remplacer <VERB>ones(A)</VERB> quand il n'�tait pas
 
33
    possible de savoir ce qu'�taient les op�randes pendant la conversion d'un code Matlab vers Scilab. Cette fonction va
 
34
    d�terminer la s�mantique correcte pendant l'ex�cution. Pour obtenir un code plus performant
 
35
    on peut remplacer les appels � <VERB>mtlb_ones</VERB> :
 
36
    </P>
 
37
 
 
38
    <DESCRIPTION_INDENT>
 
39
    <DESCRIPTION_ITEM>
 
40
    <ITEMIZE>
 
41
      <ITEM>
 
42
        <SP>
 
43
        Si <VERB>A</VERB> est un scalaire
 
44
        <VERB>mtlb_ones(A)</VERB> peut �tre remplac� par <VERB>ones(A,A)</VERB>
 
45
        </SP>
 
46
      </ITEM>
 
47
 
 
48
      <ITEM>
 
49
        <SP>
 
50
        Si <VERB>A</VERB> n'est pas un scalaire
 
51
        <VERB>mtlb_ones(A)</VERB> peut �tre remplac� par <VERB>ones(A)</VERB>
 
52
        </SP>
 
53
      </ITEM>
 
54
    </ITEMIZE>
 
55
    </DESCRIPTION_ITEM>
 
56
    </DESCRIPTION_INDENT>
 
57
 
 
58
    <P>Attention : <VERB>mtlb_ones</VERB> ne doit pas �tre utilis�e pour une programmation manuelle.</P>
 
59
 
 
60
  </DESCRIPTION>
 
61
 
 
62
  <AUTHORS>
 
63
    <AUTHORS_ITEM>V.C.</AUTHORS_ITEM>
 
64
  </AUTHORS>
 
65
</MAN>