Mercurial > hg > octave-nkf
diff scripts/plot/private/__errplot__.m @ 11099:65b240770880
Fix normal line and marker types for errorplots.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Sat, 16 Oct 2010 14:38:57 +0400 |
parents | d1978e7364ad |
children | 36c18286a61b |
line wrap: on
line diff
--- a/scripts/plot/private/__errplot__.m +++ b/scripts/plot/private/__errplot__.m @@ -34,6 +34,8 @@ [fmt, key] = __pltopt__ ("__errplot__", fstr); + fmt + [len, nplots] = size (varargin{1}); h = []; @@ -53,7 +55,7 @@ elseif (strcmp (fmt.errorstyle, "#~>")) ifmt = "boxxy"; else - ifmt = "~"; + ifmt = "yerr"; endif hg = hggroup ("parent", p);