Mercurial > hg > octave-nkf
diff scripts/plot/subplot.m @ 2520:a034dcdbc282
[project @ 1996-11-15 04:57:21 by jwe]
author | jwe |
---|---|
date | Fri, 15 Nov 1996 04:59:08 +0000 |
parents | 8fc0fa7ae9ca |
children | 8b262e771614 |
line wrap: on
line diff
--- a/scripts/plot/subplot.m +++ b/scripts/plot/subplot.m @@ -117,9 +117,9 @@ ## switching to single plot ? - set nomultiplot; - set size 1, 1; - set origin 0, 0; + gset nomultiplot; + gset size 1, 1; + gset origin 0, 0; multiplot_xn = 1; multiplot_yn = 1; @@ -152,9 +152,9 @@ multiplot_xsize = 1.0 ./ columns; multiplot_ysize = 1.0 ./ rows; - set multiplot; + gset multiplot; - eval (sprintf ("set size %g, %g", multiplot_xsize, multiplot_ysize)); + eval (sprintf ("gset size %g, %g", multiplot_xsize, multiplot_ysize)); endif @@ -170,7 +170,7 @@ xo = (xp - 1.0)*multiplot_xsize; yo = (rows - yp)*multiplot_ysize; - eval (sprintf ("set origin %g, %g", xo, yo)); + eval (sprintf ("gset origin %g, %g", xo, yo)); endif