Mercurial > hg > octave-nkf
comparison scripts/plot/loglog.m @ 5252:3d9afb170a39
[project @ 2005-03-28 18:40:35 by jwe]
author | jwe |
---|---|
date | Mon, 28 Mar 2005 18:40:35 +0000 |
parents | 32c569794216 |
children | 4c8a2e4e0717 |
comparison
equal
deleted
inserted
replaced
5251:454e3c98300d | 5252:3d9afb170a39 |
---|---|
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 __gnuplot_set__ logscale x; | 38 __gnuplot_raw__ ("set logscale x;\n"); |
39 __gnuplot_set__ logscale y; | 39 __gnuplot_raw__ ("logscale y;\n"); |
40 __gnuplot_set__ nopolar; | 40 __gnuplot_raw__ ("nopolar;\n"); |
41 | 41 |
42 __plt__ ("loglog", varargin{:}); | 42 __plt__ ("loglog", varargin{:}); |
43 | 43 |
44 endfunction | 44 endfunction |