# HG changeset patch # User John W. Eaton # Date 1231916820 18000 # Node ID 738cb6271933f66e816114182784790c1c2db8c8 # Parent 841f8e3370c6b98f819681c1662f4844128c0f35 __go_draw_axes__.m: scale markersize by 1/3 instead of 1/6 diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,5 +1,7 @@ 2009-01-14 John W. Eaton + * plot/__go_draw_axes__.m: Scale markersize by 1/3, not 1/6. + * io/dlmwrite.m: Use '%c' format for character data. 2009-01-13 John W. Eaton 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 @@ -589,7 +589,7 @@ usingclause{data_idx} = sprintf ("record=%d", numel (obj.xdata)); if (isfield (obj, "markersize")) - mdat = obj.markersize / 6; + mdat = obj.markersize / 3; endif if (isfield (obj, "edgecolor")) @@ -1303,7 +1303,7 @@ endif if (isfield (obj, "markersize")) - fprintf (plot_stream, " pointsize %f", obj.markersize / 6); + fprintf (plot_stream, " pointsize %f", obj.markersize / 3); found_style = true; endif else