Mercurial > hg > octave-lyh
diff scripts/plot/grid.m @ 5215:32c569794216
[project @ 2005-03-16 18:54:42 by jwe]
author | jwe |
---|---|
date | Wed, 16 Mar 2005 18:54:52 +0000 |
parents | eecc24b92d97 |
children | 3d9afb170a39 |
line wrap: on
line diff
--- a/scripts/plot/grid.m +++ b/scripts/plot/grid.m @@ -38,15 +38,15 @@ do_replot = false; if (nargin == 0) - __gset__ grid; + __gnuplot_set__ grid; do_replot = true; elseif (nargin == 1) if (isstr (x)) if (strcmp ("off", x)) - __gset__ nogrid; + __gnuplot_set__ nogrid; do_replot = true; elseif (strcmp ("on", x)) - __gset__ grid; + __gnuplot_set__ grid; do_replot = true; else usage (usage_msg);