Mercurial > hg > octave-lyh
comparison doc/interpreter/plot.txi @ 3428:5b77cf82393c
[project @ 2000-01-14 02:54:53 by jwe]
author | jwe |
---|---|
date | Fri, 14 Jan 2000 02:55:00 +0000 |
parents | a4cd1e9d9962 |
children | 3234a698073a |
comparison
equal
deleted
inserted
replaced
3427:e098ebb77023 | 3428:5b77cf82393c |
---|---|
1 @c Copyright (C) 1996, 1997 John W. Eaton | 1 @c Copyright (C) 1996, 1997 John W. Eaton |
2 @c This is part of the Octave manual. | 2 @c This is part of the Octave manual. |
3 @c For copying conditions, see the file gpl.texi. | 3 @c For copying conditions, see the file gpl.texi. |
4 | 4 |
5 @node Plotting, Matrix Manipulation, Input and Output, Top | 5 @node Plotting |
6 @chapter Plotting | 6 @chapter Plotting |
7 | 7 |
8 All of Octave's plotting functions use @code{gnuplot} to handle the | 8 All of Octave's plotting functions use @code{gnuplot} to handle the |
9 actual graphics. There are two low-level functions, @code{gplot} and | 9 actual graphics. There are two low-level functions, @code{gplot} and |
10 @code{gsplot}, that behave almost exactly like the corresponding | 10 @code{gsplot}, that behave almost exactly like the corresponding |
18 * Two-Dimensional Plotting:: | 18 * Two-Dimensional Plotting:: |
19 * Specialized Two-Dimensional Plots:: | 19 * Specialized Two-Dimensional Plots:: |
20 * Three-Dimensional Plotting:: | 20 * Three-Dimensional Plotting:: |
21 * Plot Annotations:: | 21 * Plot Annotations:: |
22 * Multiple Plots on One Page:: | 22 * Multiple Plots on One Page:: |
23 * Multiple Plot Windows:: | |
24 * Interaction with @code{gnuplot}:: | |
23 @end menu | 25 @end menu |
24 | 26 |
25 @node Two-Dimensional Plotting, Specialized Two-Dimensional Plots, Plotting, Plotting | 27 @node Two-Dimensional Plotting, Specialized Two-Dimensional Plots, Plotting, Plotting |
26 @section Two-Dimensional Plotting | 28 @section Two-Dimensional Plotting |
27 | 29 |
184 | 186 |
185 @DOCSTRING(ishold) | 187 @DOCSTRING(ishold) |
186 | 188 |
187 @DOCSTRING(clearplot) | 189 @DOCSTRING(clearplot) |
188 | 190 |
191 @DOCSTRING(shg) | |
192 | |
189 @DOCSTRING(closeplot) | 193 @DOCSTRING(closeplot) |
190 | 194 |
191 @DOCSTRING(purge_tmp_files) | 195 @DOCSTRING(purge_tmp_files) |
192 | 196 |
193 @DOCSTRING(axis) | 197 @DOCSTRING(axis) |
288 | 292 |
289 The @sc{Matlab}-style three-dimensional plotting commands are: | 293 The @sc{Matlab}-style three-dimensional plotting commands are: |
290 | 294 |
291 @DOCSTRING(mesh) | 295 @DOCSTRING(mesh) |
292 | 296 |
297 @DOCSTRING(meshgrid) | |
298 | |
293 @DOCSTRING(meshdom) | 299 @DOCSTRING(meshdom) |
294 | |
295 @DOCSTRING(gnuplot_binary) | |
296 | |
297 @DOCSTRING(gnuplot_has_frames) | |
298 | |
299 @DOCSTRING(figure) | |
300 | |
301 @DOCSTRING(gnuplot_has_multiplot) | |
302 | 300 |
303 @node Plot Annotations, Multiple Plots on One Page, Three-Dimensional Plotting, Plotting | 301 @node Plot Annotations, Multiple Plots on One Page, Three-Dimensional Plotting, Plotting |
304 @section Plot Annotations | 302 @section Plot Annotations |
305 | 303 |
306 @DOCSTRING(grid) | 304 @DOCSTRING(grid) |
307 | 305 |
308 @DOCSTRING(title) | 306 @DOCSTRING(title) |
309 | 307 |
308 @DOCSTRING(bottom_title) | |
309 | |
310 @DOCSTRING(xlabel) | 310 @DOCSTRING(xlabel) |
311 | 311 |
312 @node Multiple Plots on One Page, , Plot Annotations, Plotting | 312 @node Multiple Plots on One Page, Multiple Plot Windows, Plot Annotations, Plotting |
313 @section Multiple Plots on One Page | 313 @section Multiple Plots on One Page |
314 | 314 |
315 The following functions all require a version of @code{gnuplot} that | 315 The following functions all require a version of @code{gnuplot} that |
316 supports the multiplot feature. | 316 supports the multiplot feature. |
317 | 317 |
326 @DOCSTRING(subplot) | 326 @DOCSTRING(subplot) |
327 | 327 |
328 @DOCSTRING(subwindow) | 328 @DOCSTRING(subwindow) |
329 | 329 |
330 @DOCSTRING(top_title) | 330 @DOCSTRING(top_title) |
331 | |
332 @node Multiple Plot Windows, Interaction with @code{gnuplot}, Multiple Plots on One Page, Plotting | |
333 @section Multiple Plot Windows | |
334 | |
335 @DOCSTRING(figure) | |
336 | |
337 @node Interaction with @code{gnuplot}, , Multiple Plot Windows, Plotting | |
338 @section Interaction with @code{gnuplot} | |
339 | |
340 @DOCSTRING(gnuplot_binary) | |
341 | |
342 @DOCSTRING(gnuplot_has_frames) | |
343 | |
344 @DOCSTRING(gnuplot_has_multiplot) | |
345 | |
346 @DOCSTRING(graw) | |
347 | |
348 @DOCSTRING(gnuplot_command_plot) | |
349 | |
350 @DOCSTRING(gnuplot_command_replot) | |
351 | |
352 @DOCSTRING(gnuplot_command_splot) | |
353 | |
354 @DOCSTRING(gnuplot_command_using) | |
355 | |
356 @DOCSTRING(gnuplot_command_with) | |
357 | |
358 @DOCSTRING(gnuplot_command_axes) | |
359 | |
360 @DOCSTRING(gnuplot_command_title) | |
361 | |
362 @DOCSTRING(gnuplot_command_end) |