comparison scripts/plot/xlim.m @ 7208:a730e47fda4d

[project @ 2007-11-28 02:32:41 by jwe]
author jwe
date Wed, 28 Nov 2007 02:32:42 +0000
parents bd56a0609c4f
children 693ac94c2854
comparison
equal deleted inserted replaced
7207:71c03c7239fb 7208:a730e47fda4d
36 ## rather than the current axes handle. 36 ## rather than the current axes handle.
37 ## @seealso{ylim, zlim, set, get, gca} 37 ## @seealso{ylim, zlim, set, get, gca}
38 ## @end deftypefn 38 ## @end deftypefn
39 39
40 function retval = xlim (varargin) 40 function retval = xlim (varargin)
41 ret = __axes_limits__ ("xlim", varargin {:}); 41 ret = __axes_limits__ ("xlim", varargin{:});
42 42
43 if (! isempty (ret)) 43 if (! isempty (ret))
44 retval = ret; 44 retval = ret;
45 endif 45 endif
46 endfunction 46 endfunction