Mercurial > hg > octave-nkf
comparison scripts/plot/oneplot.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 |
---|---|
29 function oneplot () | 29 function oneplot () |
30 | 30 |
31 global __multiplot_mode__ = 0; | 31 global __multiplot_mode__ = 0; |
32 | 32 |
33 if (__multiplot_mode__) | 33 if (__multiplot_mode__) |
34 __gnuplot_set__ nomultiplot; | 34 __gnuplot_raw__ ("set nomultiplot;\n"); |
35 __gnuplot_set__ size 1, 1; | 35 __gnuplot_raw__ ("set size 1, 1;\n"); |
36 __gnuplot_set__ origin 0, 0; | 36 __gnuplot_raw__ ("set origin 0, 0;\n"); |
37 __multiplot_mode__ = 0; | 37 __multiplot_mode__ = 0; |
38 gnuplot_command_replot = "rep"; | 38 gnuplot_command_replot = "rep"; |
39 endif | 39 endif |
40 | 40 |
41 endfunction | 41 endfunction |