7050
|
1 ## Copyright (C) 2007 David Bateman |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 3 of the License, or (at |
|
8 ## your option) any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, see |
|
17 ## <http://www.gnu.org/licenses/>. |
|
18 |
|
19 ## Undocumented internal function. |
|
20 |
|
21 function retval = __axes_limits__ (fcn, varargin) |
7216
|
22 |
7050
|
23 retval = []; |
7216
|
24 |
|
25 fcnmode = sprintf ("%smode", fcn); |
7050
|
26 |
7215
|
27 [h, varargin, nargin] = __plt_get_axis_arg__ (fcn, varargin{:}); |
7050
|
28 |
7215
|
29 if (nargin == 0) |
7050
|
30 retval = get (h, fcn); |
|
31 else |
7215
|
32 arg = varargin{1}; |
7050
|
33 |
|
34 if (ischar (arg)) |
|
35 arg = tolower (arg); |
|
36 if (strcmp ("mode", arg)) |
|
37 |
|
38 retval = get (h, fcnmode); |
|
39 elseif (strcmp ("auto", arg) || strcmp ("manual", arg)) |
|
40 set (h, fcnmode, arg); |
|
41 endif |
|
42 else |
|
43 if (!isnumeric (arg) && any (size(arg(:)) != [2, 1])) |
|
44 error ("%s: argument must be a 2 element vector", fcn); |
|
45 else |
|
46 set (h, fcn, arg (:)); |
|
47 endif |
|
48 endif |
|
49 endif |
7216
|
50 |
7050
|
51 endfunction |