Mercurial > hg > octave-nkf
comparison scripts/plot/ylim.m @ 14359:7277fe922e99
doc: Use Octave preference for double quote in docstrings in scripts/
* interp1.m, interp2.m, interp3.m, interpn.m, profexplore.m, profile.m,
profshow.m, quadgk.m, lookfor.m, imagesc.m, bzip2.m, gzip.m, parseparams.m,
pkg.m, ancestor.m, caxis.m, ezmesh.m, ezmeshc.m, ezsurf.m, ezsurfc.m, hidden.m,
hold.m, patch.m, pie.m, pie3.m, quiver.m, quiver3.m, scatter3.m,
uicontextmenu.m, uicontrol.m, uipanel.m, uipushtool.m, uitoggletool.m,
uitoolbar.m, xlim.m, ylim.m, zlim.m, ismember.m, setxor.m, filter2.m, bicg.m,
demo.m, example.m, fail.m, test.m: Use Octave preference for double quote in
docstrings in scripts/ directory.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Mon, 13 Feb 2012 07:38:23 -0800 |
parents | 4506eade9f04 |
children | eaab03308c0b |
comparison
equal
deleted
inserted
replaced
14358:adb352685ded | 14359:7277fe922e99 |
---|---|
17 ## <http://www.gnu.org/licenses/>. | 17 ## <http://www.gnu.org/licenses/>. |
18 | 18 |
19 ## -*- texinfo -*- | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {@var{yl} =} ylim () | 20 ## @deftypefn {Function File} {@var{yl} =} ylim () |
21 ## @deftypefnx {Function File} {} ylim (@var{yl}) | 21 ## @deftypefnx {Function File} {} ylim (@var{yl}) |
22 ## @deftypefnx {Function File} {@var{m} =} ylim ('mode') | 22 ## @deftypefnx {Function File} {@var{m} =} ylim ("mode") |
23 ## @deftypefnx {Function File} {} ylim (@var{m}) | 23 ## @deftypefnx {Function File} {} ylim (@var{m}) |
24 ## @deftypefnx {Function File} {} ylim (@var{h}, @dots{}) | 24 ## @deftypefnx {Function File} {} ylim (@var{h}, @dots{}) |
25 ## Get or set the limits of the y-axis of the current plot. Called without | 25 ## Get or set the limits of the y-axis of the current plot. Called without |
26 ## arguments @code{ylim} returns the y-axis limits of the current plot. | 26 ## arguments @code{ylim} returns the y-axis limits of the current plot. |
27 ## If passed a two element vector @var{yl}, the limits of the y-axis are set | 27 ## If passed a two element vector @var{yl}, the limits of the y-axis are set |
28 ## to this value. | 28 ## to this value. |
29 ## | 29 ## |
30 ## The current mode for calculation of the y-axis can be returned with a | 30 ## The current mode for calculation of the y-axis can be returned with a |
31 ## call @code{ylim ('mode')}, and can be either 'auto' or 'manual'. The | 31 ## call @code{ylim ("mode")}, and can be either "auto" or "manual". The |
32 ## current plotting mode can be set by passing either 'auto' or 'manual' | 32 ## current plotting mode can be set by passing either "auto" or "manual" |
33 ## as the argument. | 33 ## as the argument. |
34 ## | 34 ## |
35 ## If passed a handle as the first argument, then operate on this handle | 35 ## If passed a handle as the first argument, then operate on this handle |
36 ## rather than the current axes handle. | 36 ## rather than the current axes handle. |
37 ## @seealso{xlim, zlim, set, get, gca} | 37 ## @seealso{xlim, zlim, set, get, gca} |