Mercurial > hg > octave-nkf
diff scripts/plot/multiplot.m @ 1541:47bd45a30dda
[project @ 1995-10-06 03:40:11 by jwe]
author | jwe |
---|---|
date | Fri, 06 Oct 1995 03:40:11 +0000 |
parents | 749b8b19733f |
children | c694fe5956e3 |
line wrap: on
line diff
--- a/scripts/plot/multiplot.m +++ b/scripts/plot/multiplot.m @@ -35,9 +35,9 @@ # global variables to keep track of multiplot options global multiplot_mode - global multi_xsize multi_ysize - global multi_xn multi_yn - global multi_xi multi_yi + global multiplot_xsize multiplot_ysize + global multiplot_xn multiplot_yn + global multiplot_xi multiplot_yi # This is a real kludge. We gnuplot should be made so that replot can # be executed while doing multiple plots... @@ -69,12 +69,12 @@ set origin 0,0 multiplot_mode = 0; - multi_xsize = 1; - multi_ysize = 1; - multi_xn = 1; - multi_yn = 1; - multi_xi = 1; - multi_yi = 1; + multiplot_xsize = 1; + multiplot_ysize = 1; + multiplot_xn = 1; + multiplot_yn = 1; + multiplot_xi = 1; + multiplot_yi = 1; # Someone may have reset it betweeen calls... @@ -103,12 +103,12 @@ eval (sprintf ("set origin %g, %g", xo, yo)); multiplot_mode = 1; - multi_xsize = xsize; - multi_ysize = ysize; - multi_xn = xn; - multi_yn = yn; - multi_xi = 1; - multi_yi = 1; + multiplot_xsize = xsize; + multiplot_ysize = ysize; + multiplot_xn = xn; + multiplot_yn = yn; + multiplot_xi = 1; + multiplot_yi = 1; endif