]> Creatis software - CreaPhase.git/blob - octave_packages/plot-1.1.0/doc-cache
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / plot-1.1.0 / doc-cache
1 # Created by Octave 3.6.1, Wed Mar 14 20:28:02 2012 UTC <root@t61>
2 # name: cache
3 # type: cell
4 # rows: 3
5 # columns: 7
6 # name: <cell-element>
7 # type: sq_string
8 # elements: 1
9 # length: 8
10 dxfwrite
11
12
13 # name: <cell-element>
14 # type: sq_string
15 # elements: 1
16 # length: 245
17  -- Function File: NB = dxfwrite (FILENAME, PL, ...)
18      Write FILENAME as a DXF file. Polyline PL must be defined as
19      matrix of 1, 2 or 3 columns respectively for x, y and z
20      coordinates. The number of polyline (NB) or 0 is returned.
21
22
23
24
25 # name: <cell-element>
26 # type: sq_string
27 # elements: 1
28 # length: 29
29 Write FILENAME as a DXF file.
30
31
32
33 # name: <cell-element>
34 # type: sq_string
35 # elements: 1
36 # length: 6
37 gplot3
38
39
40 # name: <cell-element>
41 # type: sq_string
42 # elements: 1
43 # length: 628
44  -- Function File:  gplot3 (A, XYZ)
45  -- Function File:  gplot3 (A, XYZ, LINE_STYLE)
46  -- Function File: [X, Y, Z] = gplot3 (A, XYZ)
47      Plot a 3-dimensional graph defined by A and XYZ in the graph
48      theory sense.  A is the adjacency matrix of the array to be
49      plotted and XY is an N-by-3 matrix containing the coordinates of
50      the nodes of the graph.
51
52      The optional parameter LINE_STYLE defines the output style for the
53      plot.  Called with no output arguments the graph is plotted
54      directly.  Otherwise, return the coordinates of the plot in X and
55      Y.
56
57      See also: gplot, treeplot, etreeplot, spy
58
59
60
61
62
63 # name: <cell-element>
64 # type: sq_string
65 # elements: 1
66 # length: 74
67 Plot a 3-dimensional graph defined by A and XYZ in the graph theory
68 sense.
69
70
71
72 # name: <cell-element>
73 # type: sq_string
74 # elements: 1
75 # length: 6
76 hist2d
77
78
79 # name: <cell-element>
80 # type: sq_string
81 # elements: 1
82 # length: 304
83  -- Function File: [COUNTS, XBINS, YBINS] = hist2d ([X, Y], XBINS,
84           YBINS, NORM)
85      Produce a 2D histogram.
86
87      Points xi,yi are stored in a 2-column array.  If ybins is missing,
88      use xbins.  If bins is a scalar, use that many bins.  If bins is a
89      vector, it represents bin edges.
90
91
92
93
94
95 # name: <cell-element>
96 # type: sq_string
97 # elements: 1
98 # length: 23
99 Produce a 2D histogram.
100
101
102
103 # name: <cell-element>
104 # type: sq_string
105 # elements: 1
106 # length: 12
107 plotdecimate
108
109
110 # name: <cell-element>
111 # type: sq_string
112 # elements: 1
113 # length: 871
114  -- Function File:  plotdecimate (P)
115  -- Function File:  plotdecimate (P, SO)
116  -- Function File:  plotdecimate (P, SO, RES)
117      Optimise plot data by removing redundant points and segments
118
119      The first parameter P is a two-column matrix to be plotted as X and
120      Y coordinates.   The second optional argument SO disables segment
121      optimisation when set to FALSE (default is TRUE). The third
122      optional argument RES is the size of the largest error on the plot:
123      if it is a scalar, it is meant relative to the range of X and Y
124      values (default 1e-3); if it is a 2x1 array, it contains the
125      absolute errors for X and Y.  Returns a two-column matrix
126      containing a subset of the rows of P. A line plot of P has the
127      same appearance as a line plot of the output, with errors smaller
128      than RES.  When creating point plots, set SO to FALSE.
129
130
131
132
133 # name: <cell-element>
134 # type: sq_string
135 # elements: 1
136 # length: 61
137 Optimise plot data by removing redundant points and segments
138
139
140
141
142 # name: <cell-element>
143 # type: sq_string
144 # elements: 1
145 # length: 4
146 tics
147
148
149 # name: <cell-element>
150 # type: sq_string
151 # elements: 1
152 # length: 452
153  -- Function File:  tics (AXIS, [POS1, POS2, ...], [LAB1, LAB2, ...],)
154      Explicitly set the tic positions and labels for the given axis.
155
156      AXIS must be 'x', 'y' or 'z'.
157
158      If no positions or labels are given, then restore the default.  If
159      positions are given but no labels, use those positions with the
160      normal labels. If positions and labels are given, each position
161      labeled with the corresponding row from the label matrix.
162
163
164
165
166
167 # name: <cell-element>
168 # type: sq_string
169 # elements: 1
170 # length: 63
171 Explicitly set the tic positions and labels for the given axis.
172
173
174
175 # name: <cell-element>
176 # type: sq_string
177 # elements: 1
178 # length: 10
179 tricontour
180
181
182 # name: <cell-element>
183 # type: sq_string
184 # elements: 1
185 # length: 741
186  -- Function File:  tricontour (TRI, X, Y, Z, LEVELS)
187  -- Function File:  tricontour (TRI, X, Y, Z, LEVELS, LINESPEC)
188      Plot level curves for the values of `Z' on a triangular mesh in 2D.
189
190      The variable TRI is the triangular meshing of the points `(X, Y)'
191      which is returned from `delaunay'. The variable LEVELS is a vector
192      with the values of the countour levels. If LEVELS is a scalar,
193      then it corresponds to the number of level curves to be drawn. If
194      exactly one level curve is desired, list the level twice in the
195      vector LEVELS.
196
197      If given, LINESPEC determines the properties to use for the lines.
198
199      The output argument H is the graphic handle to the plot.
200
201      See also: plot, trimesh, delaunay
202
203
204
205
206
207 # name: <cell-element>
208 # type: sq_string
209 # elements: 1
210 # length: 67
211 Plot level curves for the values of `Z' on a triangular mesh in 2D.
212
213
214
215 # name: <cell-element>
216 # type: sq_string
217 # elements: 1
218 # length: 4
219 zoom
220
221
222 # name: <cell-element>
223 # type: sq_string
224 # elements: 1
225 # length: 69
226  -- Function File:  zoom
227      Compatibility function; does nothing.
228
229
230
231
232 # name: <cell-element>
233 # type: sq_string
234 # elements: 1
235 # length: 37
236 Compatibility function; does nothing.
237
238
239
240
241