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

« back to all changes in this revision

Viewing changes to man/fr/graphics/contour2di.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>contour2di  </TITLE>
 
6
  <TYPE>Scilab Function  </TYPE>
 
7
  <DATE>sept 2000  </DATE>
 
8
  <SHORT_DESCRIPTION name="contour2di"> calcule les courbes de niveau d&apos;une surface  </SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
  <CALLING_SEQUENCE_ITEM>[xc,yc]=contour2di(x,y,z,nz)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
  <PARAM_INDENT>
 
14
 
 
15
  <PARAM_ITEM>
 
16
  <PARAM_NAME>x,y  </PARAM_NAME>
 
17
  <PARAM_DESCRIPTION>
 
18
  <SP>
 
19
    : deux vecteurs lignes de taille n1 et n2.
 
20
</SP>
 
21
  </PARAM_DESCRIPTION> 
 
22
  </PARAM_ITEM>
 
23
 
 
24
  <PARAM_ITEM>
 
25
  <PARAM_NAME>z  </PARAM_NAME>
 
26
  <PARAM_DESCRIPTION>
 
27
  <SP>
 
28
    : matrice r�elle de taille (n1,n2), les valeurs de la fonction.
 
29
</SP>
 
30
  </PARAM_DESCRIPTION> 
 
31
  </PARAM_ITEM>
 
32
 
 
33
  <PARAM_ITEM>
 
34
  <PARAM_NAME>nz  </PARAM_NAME>
 
35
  <PARAM_DESCRIPTION>
 
36
  <SP>: valeurs des niveaux ou nombre de niveaux</SP>
 
37
  <PARAM_INDENT>
 
38
    <PARAM_ITEM>
 
39
    <PARAM_NAME>-  </PARAM_NAME>
 
40
    <PARAM_DESCRIPTION>
 
41
    <SP>
 
42
     Si <VERB>nz</VERB> est un entier, sa valeur d�finit le nombre de courbes
 
43
                  de niveaux espac�es r�guli�rement entre zmin et zmax :</SP>
 
44
 
 
45
     <VERBATIM><![CDATA[
 
46
       z= zmin + (1:nz)*(zmax-zmin)/(nz+1)
 
47
     ]]></VERBATIM>
 
48
 
 
49
    <P>
 
50
    Noter que les niveaux <VERB>zmin</VERB> et <VERB>zmax</VERB> ne sont pas
 
51
                  dessin�s (g�n�riquement ils sont r�duits � des points) mais
 
52
                  peuvent �tre ajout�s avec
 
53
 
 
54
    </P>
 
55
    <VERBATIM><![CDATA[
 
56
       [im,jm] = find(z == zmin);     // ou zmax 
 
57
        plot2d(x(im)',y(jm)',-9,"000")
 
58
    ]]></VERBATIM>
 
59
 
 
60
    </PARAM_DESCRIPTION> 
 
61
    </PARAM_ITEM>
 
62
    <PARAM_ITEM>
 
63
    <PARAM_NAME>-  </PARAM_NAME>
 
64
    <PARAM_DESCRIPTION>
 
65
    <SP>
 
66
     - Si <VERB>nz</VERB>est un vecteur, <VERB>nz(i)</VERB> done la valeur de
 
67
                  la i�me courbe de niveau.</SP>
 
68
        
 
69
  </PARAM_DESCRIPTION> 
 
70
  </PARAM_ITEM>
 
71
  </PARAM_INDENT>
 
72
  </PARAM_DESCRIPTION> 
 
73
      </PARAM_ITEM>
 
74
  <PARAM_ITEM>
 
75
  <PARAM_NAME>xc,yc  </PARAM_NAME>
 
76
  <PARAM_DESCRIPTION>
 
77
  <SP>
 
78
    : vecteurs de taille identique contenant la d�finition des contours. Voir ci-dessous pour les d�tails.
 
79
</SP>
 
80
  </PARAM_DESCRIPTION> 
 
81
  </PARAM_ITEM>
 
82
 </PARAM_INDENT>
 
83
  </PARAM>
 
84
  <DESCRIPTION>
 
85
  <P>
 
86
    <VERB>contour2di</VERB> calcule les courbes de niveau (dans le plan) de la surface <VERB>z=f(x,y)</VERB>. Les valeurs de <VERB>f(x,y)</VERB> sont donn�es par la matrice <VERB>z</VERB> aux points du plan d�finis par <VERB>x</VERB> et <VERB>y</VERB>.
 
87
  </P>
 
88
  <P>
 
89
    <VERB>xc(1)</VERB> contient le niveau associ� � la premi�re courbe de niveau,
 
90
    <VERB>yc(1)</VERB> contient le nombre de points <VERB>N1</VERB> d�finissant cette courbe
 
91
    et (<VERB>xc(1+(1:N1))</VERB>, <VERB>yc(1+(1:N1))</VERB> ) contiennent les coordonn�es
 
92
    des points de la courbe.
 
93
    La seconde courbe commence � <VERB>xc(2+N1)</VERB> et <VERB>yc(2+N1)</VERB> et ainsi de suite.
 
94
  </P>
 
95
  </DESCRIPTION>
 
96
  <EXAMPLE><![CDATA[
 
97
[xc,yc]=contour2di(1:10,1:10,rand(10,10),5);
 
98
k=1;n=yc(k);c=1;
 
99
while k+yc(k)<size(xc,'*')
 
100
  n=yc(k);
 
101
  plot2d(xc(k+(1:n)),yc(k+(1:n)),c)
 
102
  c=c+1;
 
103
  k=k+n+1;
 
104
end
 
105
 
 
106
 ]]></EXAMPLE>
 
107
  <SEE_ALSO>
 
108
    <SEE_ALSO_ITEM> <LINK>contour</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>fcontour</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>fcontour2d</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>contour2d</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>plot2d</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>xset</LINK> </SEE_ALSO_ITEM>
 
109
  </SEE_ALSO>
 
110
  <AUTHOR>J.Ph.C.  </AUTHOR>
 
111
</MAN>