comparison scripts/plot/semilogy.m @ 5214:eecc24b92d97

[project @ 2005-03-16 17:14:12 by jwe]
author jwe
date Wed, 16 Mar 2005 17:14:12 +0000
parents c08cb1098afc
children 32c569794216
comparison
equal deleted inserted replaced
5213:390f13fc0f4a 5214:eecc24b92d97
23 ## the description of @code{plot} for a description of the arguments 23 ## the description of @code{plot} for a description of the arguments
24 ## that @code{semilogy} will accept. 24 ## that @code{semilogy} will accept.
25 ## @end deftypefn 25 ## @end deftypefn
26 ## 26 ##
27 ## @seealso{plot, semilogx, loglog, polar, mesh, contour, bar, stairs, 27 ## @seealso{plot, semilogx, loglog, polar, mesh, contour, bar, stairs,
28 ## gplot, gsplot, replot, xlabel, ylabel, and title} 28 ## replot, xlabel, ylabel, and title}
29 29
30 ## Author: jwe 30 ## Author: jwe
31 31
32 function semilogy (varargin) 32 function semilogy (varargin)
33 33
34 ## XXX FIXME XXX -- these plot states should really just be set 34 ## XXX FIXME XXX -- these plot states should really just be set
35 ## temporarily, probably inside an unwind_protect block, but there is 35 ## temporarily, probably inside an unwind_protect block, but there is
36 ## no way to determine their current values. 36 ## no way to determine their current values.
37 37
38 gset nologscale x; 38 __gset__ nologscale x;
39 gset logscale y; 39 __gset__ logscale y;
40 gset nopolar; 40 __gset__ nopolar;
41 41
42 __plt__ ("semilogy", varargin{:}); 42 __plt__ ("semilogy", varargin{:});
43 43
44 endfunction 44 endfunction