Mercurial > hg > octave-lyh
comparison scripts/plot/private/__errplot__.m @ 10581:e2a4e87b900c
__errplot__.m: Add missing semicolon line terminations.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Tue, 27 Apr 2010 19:46:15 -0400 |
parents | 1479b93ee655 |
children | 6a81e809a392 |
comparison
equal
deleted
inserted
replaced
10580:1479b93ee655 | 10581:e2a4e87b900c |
---|---|
63 | 63 |
64 if (isempty (fmt.marker) && isempty (fmt.linestyle)) | 64 if (isempty (fmt.marker) && isempty (fmt.linestyle)) |
65 [linestyle, marker] = __next_line_style__ (); | 65 [linestyle, marker] = __next_line_style__ (); |
66 if (isempty (fmt.color)) | 66 if (isempty (fmt.color)) |
67 hl = __line__ (hg, "linestyle", linestyle, "marker", marker, | 67 hl = __line__ (hg, "linestyle", linestyle, "marker", marker, |
68 "color", __next_line_color__ ()) | 68 "color", __next_line_color__ ()); |
69 else | 69 else |
70 hl = __line__ (hg, "linestyle", linestyle, "marker", marker, | 70 hl = __line__ (hg, "linestyle", linestyle, "marker", marker, |
71 "color", fmt.color) | 71 "color", fmt.color); |
72 endif | 72 endif |
73 else | 73 else |
74 if (isempty (fmt.color)) | 74 if (isempty (fmt.color)) |
75 hl = __line__ (hg, "linestyle", fmt.linestyle, "marker", fmt.marker, | 75 hl = __line__ (hg, "linestyle", fmt.linestyle, "marker", fmt.marker, |
76 "color", __next_line_color__ ()) | 76 "color", __next_line_color__ ()); |
77 else | 77 else |
78 hl = __line__ (hg, "linestyle", fmt.linestyle, "marker", fmt.marker, | 78 hl = __line__ (hg, "linestyle", fmt.linestyle, "marker", fmt.marker, |
79 "color", fmt.color) | 79 "color", fmt.color); |
80 endif | 80 endif |
81 endif | 81 endif |
82 | 82 |
83 ## FIXME -- note the code below adds the errorbar data directly as | 83 ## FIXME -- note the code below adds the errorbar data directly as |
84 ## ldata, etc properties of the line objects, as gnuplot can handle | 84 ## ldata, etc properties of the line objects, as gnuplot can handle |