diff scripts/plot/multiplot.m @ 5214:eecc24b92d97

[project @ 2005-03-16 17:14:12 by jwe]
author jwe
date Wed, 16 Mar 2005 17:14:12 +0000
parents 92be67bc9301
children 32c569794216
line wrap: on
line diff
--- a/scripts/plot/multiplot.m	Wed Mar 16 05:34:27 2005 +0000
+++ b/scripts/plot/multiplot.m	Wed Mar 16 17:14:12 2005 +0000
@@ -73,17 +73,17 @@
       error ("multiplot: xn and yn have to be positive integers");
     endif
 
-    gset multiplot;
+    __gset__ multiplot;
 
     xsize = 1.0 ./ xn;
     ysize = 1.0 ./ yn;
 
-    eval (sprintf ("gset size %g, %g", xsize, ysize));
+    eval (sprintf ("__gset__ size %g, %g", xsize, ysize));
 
     xo = 0.0;
     yo = (yn - 1.0)*ysize;
 
-    eval (sprintf ("gset origin %g, %g", xo, yo));
+    eval (sprintf ("__gset__ origin %g, %g", xo, yo));
 
     __multiplot_mode__ = 1;
     __multiplot_xsize__ = xsize;