Mercurial > hg > octave-lyh
changeset 8909:52596fe9f178
__go_draw_axes__.m: Preserve column vector orientation for the axes children while removing the axis label & title handles.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Thu, 05 Mar 2009 00:55:56 -0500 |
parents | 3c9acbb43f48 |
children | 6e9f26506804 |
files | scripts/ChangeLog scripts/plot/__go_draw_axes__.m |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2009-03-05 Ben Abbott <bpabbott@mac.com> + + * 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 <highegg@gmail.com> * polynomial/polyval.m: Implement using Horner scheme.
--- 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");