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

« back to all changes in this revision

Viewing changes to man/fr/graphics/plot2d1.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="UTF-8"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
 
 
6
  <TITLE>plot2d1</TITLE>
 
7
 
 
8
  <TYPE>Scilab Function</TYPE>
 
9
 
 
10
  <DATE>April 1993</DATE>
 
11
 
 
12
  <SHORT_DESCRIPTION name="plot2d1">2D plot (logarithmic axes)
 
13
  (obsolete)</SHORT_DESCRIPTION>
 
14
 
 
15
  <CALLING_SEQUENCE>
 
16
    <CALLING_SEQUENCE_ITEM>plot2d1(str,x,y,[style,strf,leg,rect,nax])</CALLING_SEQUENCE_ITEM>
 
17
  </CALLING_SEQUENCE>
 
18
 
 
19
  <PARAM>
 
20
    <PARAM_INDENT>
 
21
      <PARAM_ITEM>
 
22
        <PARAM_NAME>str</PARAM_NAME>
 
23
 
 
24
        <PARAM_DESCRIPTION>
 
25
          <SP>: is a string of length three <VERB>"abc"</VERB>.</SP>
 
26
 
 
27
          <PARAM_INDENT>
 
28
            <PARAM_ITEM>
 
29
              <PARAM_NAME>a</PARAM_NAME>
 
30
 
 
31
              <PARAM_DESCRIPTION>
 
32
                <SP>: can have the following values: <VERB>e</VERB>,
 
33
                <VERB>o</VERB> or <VERB>g</VERB>.</SP>
 
34
 
 
35
                <PARAM_INDENT>
 
36
                  <PARAM_ITEM>
 
37
                    <PARAM_NAME>e</PARAM_NAME>
 
38
 
 
39
                    <PARAM_DESCRIPTION>
 
40
                      <SP>: means "empty". Itspecifies the fact that the value
 
41
                      of <VERB>x</VERB> is not used (the <VERB>x</VERB> values
 
42
                      are supposed to be regularly spaced, ie 1:&lt;number of
 
43
                      rows of <VERB>y</VERB>&gt;). The user must anyway give a
 
44
                      value for <VERB>x</VERB>, 1 for instance:
 
45
                      <VERB>plot2d1("enn",1,y)</VERB>.</SP>
 
46
                    </PARAM_DESCRIPTION>
 
47
                  </PARAM_ITEM>
 
48
 
 
49
                  <PARAM_ITEM>
 
50
                    <PARAM_NAME>o</PARAM_NAME>
 
51
 
 
52
                    <PARAM_DESCRIPTION>
 
53
                      <SP>: means "one". If there are many curves, they all
 
54
                      have the same x-values: <VERB>x</VERB> is a column
 
55
                      vector of size nl and <VERB>y</VERB> is a matrix of size
 
56
                      (nl,nc). For example : <VERB>x=[0:0.1:2*%pi]';
 
57
                      plot2d1("onn",x,[sin(x) cos(x)])</VERB>.</SP>
 
58
                    </PARAM_DESCRIPTION>
 
59
                  </PARAM_ITEM>
 
60
 
 
61
                  <PARAM_ITEM>
 
62
                    <PARAM_NAME>g</PARAM_NAME>
 
63
 
 
64
                    <PARAM_DESCRIPTION>
 
65
                      <SP>: means "general". <VERB>x</VERB> and <VERB>y</VERB>
 
66
                      must have the same size (nl,nc). Each column of
 
67
                      <VERB>y</VERB> is plotted with respect to the
 
68
                      corresponding column of <VERB>x</VERB>. <VERB>nc</VERB>
 
69
                      curves are plotted using <VERB>nl</VERB> points.</SP>
 
70
                    </PARAM_DESCRIPTION>
 
71
                  </PARAM_ITEM>
 
72
                </PARAM_INDENT>
 
73
              </PARAM_DESCRIPTION>
 
74
            </PARAM_ITEM>
 
75
 
 
76
            <PARAM_ITEM>
 
77
              <PARAM_NAME>b, c</PARAM_NAME>
 
78
 
 
79
              <PARAM_DESCRIPTION>
 
80
                <SP>: can have the values <VERB>n</VERB> (normal) or
 
81
                <VERB>l</VERB> (logarithmic).</SP>
 
82
 
 
83
                <PARAM_INDENT>
 
84
                  <PARAM_ITEM>
 
85
                    <PARAM_NAME>b=l</PARAM_NAME>
 
86
 
 
87
                    <PARAM_DESCRIPTION>
 
88
                      <SP>: a logarithmic axis is used on the x-axis</SP>
 
89
                    </PARAM_DESCRIPTION>
 
90
                  </PARAM_ITEM>
 
91
 
 
92
                  <PARAM_ITEM>
 
93
                    <PARAM_NAME>c=l</PARAM_NAME>
 
94
 
 
95
                    <PARAM_DESCRIPTION>
 
96
                      <SP>: a logarithmic axis is used on the y-axis</SP>
 
97
                    </PARAM_DESCRIPTION>
 
98
                  </PARAM_ITEM>
 
99
                </PARAM_INDENT>
 
100
              </PARAM_DESCRIPTION>
 
101
            </PARAM_ITEM>
 
102
          </PARAM_INDENT>
 
103
        </PARAM_DESCRIPTION>
 
104
      </PARAM_ITEM>
 
105
 
 
106
      <PARAM_ITEM>
 
107
        <PARAM_NAME>x,y,[style,strf,leg,rect,nax]</PARAM_NAME>
 
108
 
 
109
        <PARAM_DESCRIPTION>
 
110
          <SP>: these arguments have the same meaning as in the
 
111
          <VERB>plot2d</VERB> function.</SP>
 
112
        </PARAM_DESCRIPTION>
 
113
      </PARAM_ITEM>
 
114
 
 
115
      <PARAM_ITEM>
 
116
        <PARAM_NAME>opt_args</PARAM_NAME>
 
117
 
 
118
        <PARAM_DESCRIPTION>
 
119
          <SP>: these arguments have the same meaning as in the
 
120
          <VERB>plot2d</VERB> function.</SP>
 
121
        </PARAM_DESCRIPTION>
 
122
      </PARAM_ITEM>
 
123
    </PARAM_INDENT>
 
124
  </PARAM>
 
125
 
 
126
  <DESCRIPTION>
 
127
    <P>This function is obsolete. USE <VERB>plot2d</VERB> INSTEAD !!</P>
 
128
 
 
129
    <P><VERB>plot2d1</VERB> plots a set of 2D curves. It is the same as
 
130
    <VERB>plot2d</VERB> but with one more argument <VERB>str</VERB> which
 
131
    enables logarithmic axis. Moreover, it allows to specify only one column
 
132
    vector for <VERB>x</VERB> when it is the same for all the curves.</P>
 
133
 
 
134
    <P>By default, successive plots are superposed. To clear the previous
 
135
    plot, use <VERB>clf</VERB>.</P>
 
136
 
 
137
    <P>Enter the command <VERB>plot2d1()</VERB> to see a demo.</P>
 
138
  </DESCRIPTION>
 
139
 
 
140
  <EXAMPLE><![CDATA[
 
141
 
 
142
// multiple plot without giving x
 
143
x=[0:0.1:2*%pi]';
 
144
plot2d1("enn",1,[sin(x) sin(2*x) sin(3*x)])
 
145
// multiple plot using only one x
 
146
clf()
 
147
plot2d1("onn",x,[sin(x) sin(2*x) sin(3*x)])
 
148
// logarithmic plot
 
149
x=[0.1:0.1:3]'; clf()
 
150
plot2d1("oll",x,[exp(x) exp(x^2) exp(x^3)])
 
151
 
 
152
  ]]></EXAMPLE>
 
153
 
 
154
  <SEE_ALSO>
 
155
    <SEE_ALSO_ITEM>
 
156
      <LINK>plot2d</LINK>
 
157
    </SEE_ALSO_ITEM>
 
158
 
 
159
    <SEE_ALSO_ITEM>
 
160
      <LINK>plot2d2</LINK>
 
161
    </SEE_ALSO_ITEM>
 
162
 
 
163
    <SEE_ALSO_ITEM>
 
164
      <LINK>plot2d3</LINK>
 
165
    </SEE_ALSO_ITEM>
 
166
 
 
167
    <SEE_ALSO_ITEM>
 
168
      <LINK>plot2d4</LINK>
 
169
    </SEE_ALSO_ITEM>
 
170
 
 
171
    <SEE_ALSO_ITEM>
 
172
      <LINK>clf</LINK>
 
173
    </SEE_ALSO_ITEM>
 
174
  </SEE_ALSO>
 
175
 
 
176
  <AUTHOR>J.Ph.C.</AUTHOR>
 
177
</MAN>
 
 
b'\\ No newline at end of file'