# HG changeset patch # User jwe # Date 1190057257 0 # Node ID b2de26e6785775ecef4cbd6f77f53377fc5dab42 # Parent c8081f4c094fe1422e295143f0ad5046999412d6 [project @ 2007-09-17 19:27:37 by jwe] diff -r c8081f4c094f -r b2de26e67857 scripts/ChangeLog --- a/scripts/ChangeLog Mon Sep 17 17:31:10 2007 +0000 +++ b/scripts/ChangeLog Mon Sep 17 19:27:37 2007 +0000 @@ -1,3 +1,7 @@ +2007-09-17 John W. Eaton + + * plot/__go_draw_axes__.m: Omit linestyle clause for errorbar plots. + 2007-09-14 Ulrich Tipp * miscellaneous/bincoeff.m: Fix calculation of bincoeff (n, k) for diff -r c8081f4c094f -r b2de26e67857 scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m Mon Sep 17 17:31:10 2007 +0000 +++ b/scripts/plot/__go_draw_axes__.m Mon Sep 17 19:27:37 2007 +0000 @@ -374,8 +374,7 @@ endif data{data_idx} = [xdat, ydat, xlo, xhi, ylo, yhi]'; usingclause{data_idx} = "using ($1):($2):($3):($4):($5):($6)"; - withclause{data_idx} = sprintf ("with xyerrorbars linestyle %d", - data_idx); + withclause{data_idx} = "with xyerrorbars"; else ## Obtain the limits based on the exact x values. if (xautoscale) @@ -384,8 +383,7 @@ endif data{data_idx} = [xdat, ydat, ylo, yhi]'; usingclause{data_idx} = "using ($1):($2):($3):($4)"; - withclause{data_idx} = sprintf ("with yerrorbars linestyle %d", - data_idx); + withclause{data_idx} = "with yerrorbars"; endif elseif (xerr) xlo = xdat-xldat; @@ -400,8 +398,7 @@ endif data{data_idx} = [xdat, ydat, xlo, xhi]'; usingclause{data_idx} = "using ($1):($2):($3):($4)"; - withclause{data_idx} = sprintf ("with xerrorbars linestyle %d", - data_idx); + withclause{data_idx} = "with xerrorbars"; else if (xautoscale) [xmin, xmax, xminp] = get_data_limits (xmin, xmax, xminp, xdat);