comparison scripts/plot/xlim.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
21 ## @findex ylim 21 ## @findex ylim
22 ## @findex zlim 22 ## @findex zlim
23 ## 23 ##
24 ## @deftypefn {Function File} {@var{xl} =} xlim () 24 ## @deftypefn {Function File} {@var{xl} =} xlim ()
25 ## @deftypefnx {Function File} {} xlim (@var{xl}) 25 ## @deftypefnx {Function File} {} xlim (@var{xl})
26 ## @deftypefnx {Function File} {@var{m} =} xlim ('mode') 26 ## @deftypefnx {Function File} {@var{m} =} xlim ("mode")
27 ## @deftypefnx {Function File} {} xlim (@var{m}) 27 ## @deftypefnx {Function File} {} xlim (@var{m})
28 ## @deftypefnx {Function File} {} xlim (@var{h}, @dots{}) 28 ## @deftypefnx {Function File} {} xlim (@var{h}, @dots{})
29 ## Get or set the limits of the x-axis of the current plot. Called without 29 ## Get or set the limits of the x-axis of the current plot. Called without
30 ## arguments @code{xlim} returns the x-axis limits of the current plot. 30 ## arguments @code{xlim} returns the x-axis limits of the current plot.
31 ## If passed a two element vector @var{xl}, the limits of the x-axis are set 31 ## If passed a two element vector @var{xl}, the limits of the x-axis are set
32 ## to this value. 32 ## to this value.
33 ## 33 ##
34 ## The current mode for calculation of the x-axis can be returned with a 34 ## The current mode for calculation of the x-axis can be returned with a
35 ## call @code{xlim ('mode')}, and can be either 'auto' or 'manual'. The 35 ## call @code{xlim ("mode")}, and can be either "auto" or "manual". The
36 ## current plotting mode can be set by passing either 'auto' or 'manual' 36 ## current plotting mode can be set by passing either "auto" or "manual"
37 ## as the argument. 37 ## as the argument.
38 ## 38 ##
39 ## If passed a handle as the first argument, then operate on this handle 39 ## If passed a handle as the first argument, then operate on this handle
40 ## rather than the current axes handle. 40 ## rather than the current axes handle.
41 ## @seealso{ylim, zlim, set, get, gca} 41 ## @seealso{ylim, zlim, set, get, gca}