Mercurial > hg > octave-nkf
comparison scripts/plot/plot.m @ 11316:b7ff4a51ea88
plot.m: Eliminate present tense in first sentence of docstring.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Mon, 06 Dec 2010 17:34:15 -0800 |
parents | 3140cb7a05a1 |
children | fd0a3ac60b0e |
comparison
equal
deleted
inserted
replaced
11315:c715816f4539 | 11316:b7ff4a51ea88 |
---|---|
22 ## @deftypefnx {Function File} {} plot (@var{x}, @var{y}) | 22 ## @deftypefnx {Function File} {} plot (@var{x}, @var{y}) |
23 ## @deftypefnx {Function File} {} plot (@var{x}, @var{y}, @var{property}, @var{value}, @dots{}) | 23 ## @deftypefnx {Function File} {} plot (@var{x}, @var{y}, @var{property}, @var{value}, @dots{}) |
24 ## @deftypefnx {Function File} {} plot (@var{x}, @var{y}, @var{fmt}) | 24 ## @deftypefnx {Function File} {} plot (@var{x}, @var{y}, @var{fmt}) |
25 ## @deftypefnx {Function File} {} plot (@var{h}, @dots{}) | 25 ## @deftypefnx {Function File} {} plot (@var{h}, @dots{}) |
26 ## @deftypefnx {Function File} {@var{h} =} plot (@dots{}) | 26 ## @deftypefnx {Function File} {@var{h} =} plot (@dots{}) |
27 ## Produces two-dimensional plots. Many different combinations of | 27 ## Produce two-dimensional plots. |
28 ## arguments are possible. The simplest form is | 28 ## |
29 ## Many different combinations of arguments are possible. The simplest | |
30 ## form is | |
29 ## | 31 ## |
30 ## @example | 32 ## @example |
31 ## plot (@var{y}) | 33 ## plot (@var{y}) |
32 ## @end example | 34 ## @end example |
33 ## | 35 ## |
34 ## @noindent | 36 ## @noindent |
35 ## where the argument is taken as the set of @var{y} coordinates and the | 37 ## where the argument is taken as the set of @var{y} coordinates and the |
36 ## @var{x} coordinates are taken to be the indices of the elements, | 38 ## @var{x} coordinates are taken to be the indices of the elements |
37 ## starting with 1. | 39 ## starting with 1. |
38 ## | 40 ## |
39 ## To save a plot, in one of several image formats such as PostScript | 41 ## To save a plot, in one of several image formats such as PostScript |
40 ## or PNG, use the @code{print} command. | 42 ## or PNG, use the @code{print} command. |
41 ## | 43 ## |