# HG changeset patch # User Ben Abbott # Date 1236232556 18000 # Node ID 52596fe9f17806840d5a8d06448a187de78efb54 # Parent 3c9acbb43f4836a63ef50de0d7dbb224eebcdbf9 __go_draw_axes__.m: Preserve column vector orientation for the axes children while removing the axis label & title handles. diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2009-03-05 Ben Abbott + + * plot/__go_draw_axes__.m: Preserve column vector orientation for + the axes children while removing the axis label & title handles. + 2009-03-03 Jaroslav Hajek * polynomial/polyval.m: Implement using Horner scheme. diff --git a/scripts/plot/__go_draw_axes__.m b/scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m +++ b/scripts/plot/__go_draw_axes__.m @@ -294,8 +294,8 @@ fputs (plot_stream, "set clip two;\n"); kids = axis_obj.children; - kids = setdiff (kids, [axis_obj.xlabel, axis_obj.ylabel, ... - axis_obj.zlabel, axis_obj.title]); + kids = setdiff (kids, [axis_obj.xlabel; axis_obj.ylabel; ... + axis_obj.zlabel; axis_obj.title]); if (nd == 3) fputs (plot_stream, "set parametric;\n");