Mercurial > hg > octave-lyh
comparison scripts/plot/loglog.m @ 5373:eabc8e96c006
[project @ 2005-05-27 13:25:22 by jwe]
author | jwe |
---|---|
date | Fri, 27 May 2005 13:25:22 +0000 |
parents | 4c8a2e4e0717 |
children | 2618a0750ae6 |
comparison
equal
deleted
inserted
replaced
5372:b4485a3ce01b | 5373:eabc8e96c006 |
---|---|
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_raw__ ("set logscale x;\n"); | 38 __gnuplot_raw__ ("set logscale x;\n"); |
39 __gnuplot_raw__ ("logscale y;\n"); | 39 __gnuplot_raw__ ("set logscale y;\n"); |
40 __gnuplot_raw__ ("nopolar;\n"); | 40 __gnuplot_raw__ ("set nopolar;\n"); |
41 | 41 |
42 __plt__ ("loglog", varargin{:}); | 42 __plt__ ("loglog", varargin{:}); |
43 | 43 |
44 endfunction | 44 endfunction |