Mercurial > hg > octave-nkf
comparison scripts/plot/errorbar.m @ 10846:a4f482e66b65
Grammarcheck more of the documentation.
Use @noindent macro appropriately.
Limit line length to 80 characters.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 01 Aug 2010 20:22:17 -0700 |
parents | eca2af8a92bc |
children | 65b240770880 |
comparison
equal
deleted
inserted
replaced
10845:c0ffe159ba1a | 10846:a4f482e66b65 |
---|---|
79 ## | 79 ## |
80 ## @example | 80 ## @example |
81 ## errorbar (@var{x}, @var{y}, @var{ex}, ">") | 81 ## errorbar (@var{x}, @var{y}, @var{ex}, ">") |
82 ## @end example | 82 ## @end example |
83 ## | 83 ## |
84 ## @noindent | |
84 ## produces an xerrorbar plot of @var{y} versus @var{x} with @var{x} | 85 ## produces an xerrorbar plot of @var{y} versus @var{x} with @var{x} |
85 ## errorbars drawn from @var{x}-@var{ex} to @var{x}+@var{ex}. | 86 ## errorbars drawn from @var{x}-@var{ex} to @var{x}+@var{ex}. |
86 ## | 87 ## |
87 ## @example | 88 ## @example |
88 ## @group | 89 ## @group |
89 ## errorbar (@var{x}, @var{y1}, @var{ey}, "~", | 90 ## errorbar (@var{x}, @var{y1}, @var{ey}, "~", |
90 ## @var{x}, @var{y2}, @var{ly}, @var{uy}) | 91 ## @var{x}, @var{y2}, @var{ly}, @var{uy}) |
91 ## @end group | 92 ## @end group |
92 ## @end example | 93 ## @end example |
93 ## | 94 ## |
95 ## @noindent | |
94 ## produces yerrorbar plots with @var{y1} and @var{y2} versus @var{x}. | 96 ## produces yerrorbar plots with @var{y1} and @var{y2} versus @var{x}. |
95 ## Errorbars for @var{y1} are drawn from @var{y1}-@var{ey} to | 97 ## Errorbars for @var{y1} are drawn from @var{y1}-@var{ey} to |
96 ## @var{y1}+@var{ey}, errorbars for @var{y2} from @var{y2}-@var{ly} to | 98 ## @var{y1}+@var{ey}, errorbars for @var{y2} from @var{y2}-@var{ly} to |
97 ## @var{y2}+@var{uy}. | 99 ## @var{y2}+@var{uy}. |
98 ## | 100 ## |
101 ## errorbar (@var{x}, @var{y}, @var{lx}, @var{ux}, | 103 ## errorbar (@var{x}, @var{y}, @var{lx}, @var{ux}, |
102 ## @var{ly}, @var{uy}, "~>") | 104 ## @var{ly}, @var{uy}, "~>") |
103 ## @end group | 105 ## @end group |
104 ## @end example | 106 ## @end example |
105 ## | 107 ## |
108 ## @noindent | |
106 ## produces an xyerrorbar plot of @var{y} versus @var{x} in which | 109 ## produces an xyerrorbar plot of @var{y} versus @var{x} in which |
107 ## @var{x} errorbars are drawn from @var{x}-@var{lx} to @var{x}+@var{ux} | 110 ## @var{x} errorbars are drawn from @var{x}-@var{lx} to @var{x}+@var{ux} |
108 ## and @var{y} errorbars from @var{y}-@var{ly} to @var{y}+@var{uy}. | 111 ## and @var{y} errorbars from @var{y}-@var{ly} to @var{y}+@var{uy}. |
109 ## @seealso{semilogxerr, semilogyerr, loglogerr} | 112 ## @seealso{semilogxerr, semilogyerr, loglogerr} |
110 ## @end deftypefn | 113 ## @end deftypefn |