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

« back to all changes in this revision

Viewing changes to man/fr/mtlb/mtlb_rcond.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
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>fr</LANGUAGE>
 
5
  <TITLE>mtlb_rcond</TITLE>
 
6
  <TYPE>Fonction M2SCI</TYPE>
 
7
  <DATE>Avril 2004</DATE>
 
8
 
 
9
  <SHORT_DESCRIPTION name="mtlb_rcond">Fonction d'�mulation de la fonction Matlab rcond</SHORT_DESCRIPTION>
 
10
 
 
11
  <DESCRIPTION>
 
12
 
 
13
    <P>Dans plusieurs cas particuliers, la fonction <VERB>rcond</VERB> se comporte diff�remment dans Matlab et dans Scilab :</P>
 
14
 
 
15
    <DESCRIPTION_INDENT>
 
16
    <DESCRIPTION_ITEM>
 
17
    <ITEMIZE>
 
18
      <ITEM>
 
19
        <SP>
 
20
        Avec une matrice vide : La fonction Matlab <VERB>rcond</VERB> retourne <VERB>Inf</VERB>
 
21
        et Scilab retourne <VERB>[]</VERB>
 
22
        </SP>
 
23
      </ITEM>
 
24
    </ITEMIZE>
 
25
    </DESCRIPTION_ITEM>
 
26
    </DESCRIPTION_INDENT>
 
27
 
 
28
    <P>
 
29
    La fonction <VERB>mtlb_rcond(A)</VERB> est utilis�e par
 
30
    <VERB>mfile2sci</VERB> pour remplacer <VERB>rcond(A)</VERB> quand il n'�tait pas
 
31
    possible de savoir ce qu'�tait le param�tre d'entr�e pendant la conversion d'un code Matlab vers Scilab. Cette fonction va
 
32
    d�terminer la s�mantique correcte pendant l'ex�cution. Pour obtenir un code plus performant
 
33
    on peut remplacer les appels � <VERB>mtlb_rcond</VERB> :
 
34
    </P>
 
35
 
 
36
    <DESCRIPTION_INDENT>
 
37
    <DESCRIPTION_ITEM>
 
38
    <ITEMIZE>
 
39
      <ITEM>
 
40
        <SP>
 
41
        Si <VERB>A</VERB> n'est pas une matrice vide
 
42
        <VERB>mtlb_rcond(A)</VERB> peut �tre remplac� par <VERB>rcond(A)</VERB>
 
43
        </SP>
 
44
      </ITEM>
 
45
    </ITEMIZE>
 
46
    </DESCRIPTION_ITEM>
 
47
    </DESCRIPTION_INDENT>
 
48
 
 
49
    <P>Attention : <VERB>mtlb_rcond</VERB> ne doit pas �tre utilis�e pour une programmation manuelle.</P>
 
50
 
 
51
  </DESCRIPTION>
 
52
 
 
53
  <AUTHORS>
 
54
    <AUTHORS_ITEM>V.C.</AUTHORS_ITEM>
 
55
  </AUTHORS>
 
56
</MAN>