# HG changeset patch # User jwe # Date 1178729210 0 # Node ID 9197bb0a27384d67b3028e1c21065fa39a8c1445 # Parent fb8bddaa07c4af648425811381c7708f92dbaedd [project @ 2007-05-09 16:46:50 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2007-05-09 John W. Eaton + + * plot/__go_draw_axes__.m: Break plot command over multiple lines. + 2007-05-09 G. D. McBain * statistics/distributions/normcdf.m: Use standard deviation 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 @@ -652,10 +652,10 @@ fputs (plot_stream, "set ticslevel 0;\n"); fprintf (plot_stream, "set view %g, %g;\n", rot_x, rot_z); endif - fprintf (plot_stream, "%s \"-\" %s %s %s", plot_cmd, + fprintf (plot_stream, "%s \"-\" %s %s %s \\\n", plot_cmd, usingclause{1}, titlespec{1}, withclause{1}); for i = 2:data_idx - fprintf (plot_stream, ", \"-\" %s %s %s", + fprintf (plot_stream, ", \"-\" %s %s %s \\\n", usingclause{i}, titlespec{i}, withclause{i}); endfor fputs (plot_stream, ";\n");