# HG changeset patch # User Ben Abbott # Date 1295720983 18000 # Node ID dc11166fcddc330d98e2a4a1bed8fe7ed333bb6d # Parent da9afc5c4cfbe4d18d1e3ea941edcb91b7db42d5 subplot.m: Set "box" to "on" by default (same as Matlab). diff -r da9afc5c4cfb -r dc11166fcddc scripts/ChangeLog --- a/scripts/ChangeLog Sat Jan 22 13:00:07 2011 -0500 +++ b/scripts/ChangeLog Sat Jan 22 13:29:43 2011 -0500 @@ -1,5 +1,6 @@ 2011-01-22 Ben Abbott + * plot/subplot.m: Set "box" to "on" by default (same as Matlab). * plot/cylinder.m: Remove console output from demo. 2011-01-22 Konstantinos Poulios diff -r da9afc5c4cfb -r dc11166fcddc scripts/plot/subplot.m --- a/scripts/plot/subplot.m Sat Jan 22 13:00:07 2011 -0500 +++ b/scripts/plot/subplot.m Sat Jan 22 13:29:43 2011 -0500 @@ -165,7 +165,8 @@ pos = subplot_position (rows, cols, index, "outerposition", units); pos2 = subplot_position (rows, cols, index, "position", units); tmp = axes ("outerposition", pos, "position", pos2, - "activepositionproperty", "outerposition"); + "activepositionproperty", "outerposition", + "box", "off"); endif if (align_axes && strcmp (get (cf, "__graphics_toolkit__"), "gnuplot"))