Mercurial > hg > octave-nkf
comparison scripts/plot/ylim.m @ 9042:97aa01a85ea4
Merge documentation cleanup changes to main branch.
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Wed, 25 Mar 2009 18:13:08 -0700 |
parents | dbd0c77e575e |
children | 923c7cb7f13f |
comparison
equal
deleted
inserted
replaced
9019:12ca81f1fa99 | 9042:97aa01a85ea4 |
---|---|
20 ## @deftypefn {Function File} {@var{xl} =} ylim () | 20 ## @deftypefn {Function File} {@var{xl} =} ylim () |
21 ## @deftypefnx {Function File} {} ylim (@var{xl}) | 21 ## @deftypefnx {Function File} {} ylim (@var{xl}) |
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{xl}, the limits of the y axis are set | 27 ## If passed a two element vector @var{xl}, 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 an handle as the first argument, then operate on this handle | 35 ## If passed an handle as the first argument, then operate on this handle |
36 ## rather than the current axes handle. | 36 ## rather than the current axes handle. |