Mercurial > hg > octave-lyh
comparison scripts/plot/private/__errplot__.m @ 10590:083e4f6143fe
__errplot__.m: Fix bug for boxxy errorbar.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Thu, 29 Apr 2010 07:14:08 -0400 |
parents | eb69d94e8648 |
children | f0a7a72c1fbf |
comparison
equal
deleted
inserted
replaced
10589:b6364a88de06 | 10590:083e4f6143fe |
---|---|
48 ifmt = "xyerr"; | 48 ifmt = "xyerr"; |
49 elseif (strcmp (fmt.errorstyle, "#")) | 49 elseif (strcmp (fmt.errorstyle, "#")) |
50 ifmt = "box"; | 50 ifmt = "box"; |
51 elseif (strcmp (fmt.errorstyle, "#~")) | 51 elseif (strcmp (fmt.errorstyle, "#~")) |
52 ifmt = "boxy"; | 52 ifmt = "boxy"; |
53 elseif (strcmp (fmt.linestyle, "#~>")) | 53 elseif (strcmp (fmt.errorstyle, "#~>")) |
54 ifmt = "boxxy"; | 54 ifmt = "boxxy"; |
55 else | 55 else |
56 ifmt = "~"; | 56 ifmt = "~"; |
57 endif | 57 endif |
58 | 58 |