comparison scripts/plot/loglog.m @ 3979:e0b7a493e5a8

[project @ 2002-07-10 17:45:34 by jwe]
author jwe
date Wed, 10 Jul 2002 17:45:34 +0000
parents ae7adbb591e8
children c08cb1098afc
comparison
equal deleted inserted replaced
3978:10bc4c350d61 3979:e0b7a493e5a8
26 ## @seealso{plot, semilogy, loglog, polar, mesh, contour, bar, stairs, 26 ## @seealso{plot, semilogy, loglog, polar, mesh, contour, bar, stairs,
27 ## gplot, gsplot, replot, xlabel, ylabel, and title} 27 ## gplot, gsplot, replot, xlabel, ylabel, and title}
28 28
29 ## Author: jwe 29 ## Author: jwe
30 30
31 function loglog (...) 31 function loglog (varargin)
32 32
33 ## XXX FIXME XXX -- these plot states should really just be set 33 ## XXX FIXME XXX -- these plot states should really just be set
34 ## temporarily, probably inside an unwind_protect block, but there is 34 ## temporarily, probably inside an unwind_protect block, but there is
35 ## no way to determine their current values. 35 ## no way to determine their current values.
36 36
37 gset logscale x; 37 gset logscale x;
38 gset logscale y; 38 gset logscale y;
39 gset nopolar; 39 gset nopolar;
40 40
41 __plt__ ("loglog", all_va_args); 41 __plt__ ("loglog", varargin{:});
42 42
43 endfunction 43 endfunction