Mercurial > hg > octave-lyh
diff 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 |
line wrap: on
line diff
--- a/scripts/plot/loglog.m +++ b/scripts/plot/loglog.m @@ -28,7 +28,7 @@ ## Author: jwe -function loglog (...) +function loglog (varargin) ## XXX FIXME XXX -- these plot states should really just be set ## temporarily, probably inside an unwind_protect block, but there is @@ -38,6 +38,6 @@ gset logscale y; gset nopolar; - __plt__ ("loglog", all_va_args); + __plt__ ("loglog", varargin{:}); endfunction