comparison scripts/plot/semilogxerr.m @ 10687:a8ce6bdecce5

Improve documentation strings.
author Rik <octave@nomad.inbox5.com>
date Tue, 08 Jun 2010 20:22:38 -0700
parents 46c8ecc4d565
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
10686:8675858ba1e2 10687:a8ce6bdecce5
17 ## along with Octave; see the file COPYING. If not, see 17 ## along with Octave; see the file COPYING. If not, see
18 ## <http://www.gnu.org/licenses/>. 18 ## <http://www.gnu.org/licenses/>.
19 19
20 ## -*- texinfo -*- 20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} {} semilogxerr (@var{args}) 21 ## @deftypefn {Function File} {} semilogxerr (@var{args})
22 ## Produce two-dimensional plots on a semilogarithm axis with errorbars. 22 ## Produce two-dimensional plots using a logarithmic scale for the @var{x}
23 ## Many different combinations of arguments are possible. The most used 23 ## axis and errorbars at each data point. Many different combinations of
24 ## form is 24 ## arguments are possible. The most used form is
25 ## 25 ##
26 ## @example 26 ## @example
27 ## semilogxerr (@var{x}, @var{y}, @var{ey}, @var{fmt}) 27 ## semilogxerr (@var{x}, @var{y}, @var{ey}, @var{fmt})
28 ## @end example 28 ## @end example
29 ## 29 ##
30 ## @noindent 30 ## @noindent
31 ## which produces a semi-logarithm plot of @var{y} versus @var{x} 31 ## which produces a semi-logarithmic plot of @var{y} versus @var{x}
32 ## with errors in the @var{y}-scale defined by @var{ey} and the plot 32 ## with errors in the @var{y}-scale defined by @var{ey} and the plot
33 ## format defined by @var{fmt}. See errorbar for available formats and 33 ## format defined by @var{fmt}. See @code{errorbar} for available formats and
34 ## additional information. 34 ## additional information.
35 ## @seealso{errorbar, loglogerr semilogyerr} 35 ## @seealso{errorbar, loglogerr semilogyerr}
36 ## @end deftypefn 36 ## @end deftypefn
37 37
38 ## Created: 20.2.2001 38 ## Created: 20.2.2001